Practical integration guide first, then full schema-backed reference.
Send your key using token auth in the Authorization header.
Authorization: Token YOUR_API_KEY
Use the base URL and list endpoints to integrate quickly.
https://jukehouse.fm/api/v1/
Example request:
curl -H "Authorization: Token YOUR_API_KEY" \
https://jukehouse.fm/api/v1/songs/
Example paginated response:
{
"count": 42,
"next": "https://jukehouse.fm/api/v1/songs/?limit=20&offset=20",
"previous": null,
"results": []
}
limit / offset for paginationsearch for text search on supported resourcesordering for sorting, prefix with -Common status codes:
Organized by resource group and generated from the live public OpenAPI schema.
Interactive schema reference (ReDoc).