GET /v1/soundtracks
Returns soundtracks from the database. Results are paginated.| Parameter | Type | Default | Description |
|---|---|---|---|
offset | integer | 0 | Number of records to skip |
limit | integer | 50 | Number of records to return (max 50) |
next_offset is null, there are no more pages.
Pagination Example
GET /v1/soundtracks?igdb_id=:id
Search by IGDB game ID.GET /v1/soundtracks?name=:query
Search by game name. Case-insensitive, partial match supported.Error Responses
| Status | Meaning |
|---|---|
401 | Missing or invalid API key |
404 | No results found |
409 | API key for this user already exists |
429 | Rate limit exceeded |
500 | Server error |