GET
TracksGet Track
Fetch a single track by Tune ID.
/v1/tracks/:tune_idMethod
GET
Path
/v1/tracks/:tune_id
Group
Tracks
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/tracks/3f2504e0-4f89-11d3-9a0c-0305e82c3301Request parameters
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
tune_id | uuid | Yes | Stable Tune identifier for the requested resource. |
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", "AU"],
"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_640.jpg",
"width": 640,
"height": 640
}
]
}
}Next steps