Overview
Phish.in is a community-maintained archive of live recordings from the band Phish, spanning decades of concerts. The API gives you access to show dates, venues, setlists, and audio track data. An API key is required and can be requested through the Phish.in website.
Beginner Tip
All endpoints are paginated by default; use the ?page= and ?per_page= query parameters to control how many results you get back per request.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Phishin",
"description": "A web-based archive of legal live audio recordings of the improvisational rock band Phish",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
date Date of the live performance. venue_name Name of the venue where the show took place. location City and state/country of the venue. duration Total show duration in seconds. tracks List of track objects, each with a title, position, and audio URL. tour_name Name of the Phish tour the show belongs to. Implementation Example
const url = "https://phish.in/api-docs";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →AI Mastering
⭐ Beginner's PickAI Mastering is an API that automatically applies professional audio mastering to your music files using AI algorithms.
Freesound
⭐ Beginner's PickFreesound is a collaborative database of Creative Commons licensed audio samples and field recordings.
KSoft.Si Lyrics
⭐ Beginner's PickKSoft.Si Lyrics API provides instant lyrics lookup for songs by title and artist name.
LastFm
⭐ Beginner's PickLast.fm is a music discovery and social listening platform with over 15 years of scrobbling data.
Musixmatch
Musixmatch provides access to one of the largest lyrics databases in the world, covering millions of songs.