Songs
Get Multiple Songs by Id
Fetch one or more songs by id using the songs lookup endpoint.
Endpoint
GET /songs
Endpoint reference: getSongs
Use this form when you already have one or more song ids and want them back in a single response.
Required Query Parameter
| Name | Description | Type | Example |
|---|---|---|---|
ids | Comma-separated song ids | string | song_1,song_2,song_3 |
Optional Query Parameters
Scoped parameters like view[...] and limit[...] can shape included relationships.
| Name | Values | Required |
|---|---|---|
lang | locale string | false |
include | albums, artists, lyrics | false |
view | minimal | false |
view[songs] | minimal | false |
view[albums] | minimal | false |
view[artists] | minimal | false |
limit[albums] | 1-25 | false |
limit[artists] | 1-25 | false |
Responses
| Status | Content Type | Response |
|---|---|---|
200 OK | application/json | SongListResponse |
400 Bad Request | application/json | ErrorResponse |