GET
ArtistsArtist Tracks
Return tracks associated with a specific artist.
/v1/artists/:tune_id/tracksMethod
GET
Path
/v1/artists/:tune_id/tracks
Group
Artists
Overview
How to use this endpoint
Use this endpoint when you need structured API data in a predictable JSON shape. Reference the request example, required parameters, and response fields below to wire it into your product or internal tool.
Response format
JSON response
All successful responses return data in a stable JSON envelope and use Tune UUIDs for resource identifiers.
Code example
Example request
request
Copy-ready
GET /v1/artists/a87ff679-a2f3-71d1-9ad8-0800200c9a66/tracksRequest parameters
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tune_id | uuid | Yes | Stable Tune identifier for the requested resource. |
Request parameters
Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Number of records to return. Default 20, maximum 100. |
cursor | string | No | Opaque cursor returned by a previous paginated response. |
Response schema
Response fields
| Field | Type | Description |
|---|---|---|
tune_id | uuid | Unique Tune track identifier. |
name | string | Track title. |
duration_ms | integer | Track duration in milliseconds. |
track_number | integer | Position on the release. |
disc_number | integer | Disc number on multi-disc releases. |
explicit | boolean | Whether the track is explicit. |
isrc | string | null | International recording code. |
popularity | integer | Relative popularity score from 0 to 100. |
preview_url | string | null | Short preview audio URL if available. |
available_markets | string[] | Country codes where the track is available. |
album | object | Album summary with tune_id, name, and release_date. |
artists | object[] | Artist summaries with tune_id and name. |
images | object[] | Artwork images with url, width, and height. |
Code example
Example response
application/json
Copy-ready
{
"data": [
{
"tune_id": "3f2504e0-4f89-11d3-9a0c-0305e82c3301",
"name": "Afterimage",
"duration_ms": 243187,
"track_number": 3,
"disc_number": 1,
"explicit": false,
"isrc": "GBAYE0601650",
"popularity": 72,
"preview_url": "https://cdn.tune.dev/previews/3f2504e0.mp3",
"available_markets": ["US", "GB", "CA"],
"album": {
"tune_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"name": "Signal Loss",
"release_date": "2023-06-14"
},
"artists": [
{
"tune_id": "a87ff679-a2f3-71d1-9ad8-0800200c9a66",
"name": "Nova Circuit"
}
],
"images": [
{
"url": "https://cdn.tune.dev/images/7c9e6679_300.jpg",
"width": 300,
"height": 300
}
]
}
],
"pagination": {
"limit": 20,
"next_cursor": "eyJvZmZzZXQiOjIwfQ=="
}
}Next steps