GET
/track/isrcDirect ISRC → track lookup. Returns the full /track/info payload — audio features, album, recommendations and all — from just a 12-character ISRC.
Rate limit
60 req/min
Caching
Cached in the internal database indefinitely.
Authentication
Send a
User-Agent header containing a contact email. See authentication.Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| isrc | string | required | 12-character International Standard Recording Code, e.g. USIR20400274. |
Request
curl 'https://api.synkradio.co.uk/track/isrc?isrc=GBUM71505078' \
-H 'User-Agent: [email protected]'Try it
GETTry it
Sends a real requesthttps://api.synkradio.co.uk/track/isrc?isrc=USIR20400274Response
200 application/json
{
"found": true,
"id": 953097,
"name": "Mr. Brightside",
"explicit": false,
"isrc": "USIR20400274",
"trackNumber": 1,
"discNumber": 1,
"durationMs": 223000,
"durationFormatted": "3:43",
"artists": [
{
"id": 897,
"name": "The Killers"
}
],
"primaryArtist": {
"id": 897,
"name": "The Killers",
"genres": [
"Rock"
],
"image": "https://api.synkradio.co.uk/artistimage?id=897"
},
"album": {
"id": 107198,
"name": "Nu Rock",
"albumType": "album",
"releaseDate": "2007-09-17",
"totalTracks": 12,
"label": "Universal Music Group International",
"genres": [
"Rock"
],
"cover": "https://api.synkradio.co.uk/cover?artist=The%20Killers&title=Mr.%20Brightside",
"upc": "600753037942"
},
"audioFeatures": {
"key": "C#/Db",
"keyIndex": 1,
"mode": "Major",
"tempo": 148.1,
"loudness": -3.759,
"energy": 0.931,
"danceability": 0.344,
"valence": 0.251,
"acousticness": 0.00104,
"instrumentalness": 0,
"liveness": 0.0903,
"speechiness": 0.0783
},
"recommendations": [
{
"id": 71955241,
"name": "All These Things That I've Done",
"artists": [
{
"name": "The Killers",
"id": 897
}
],
"album": "Direct Hits",
"isrc": null,
"durationMs": 302000,
"durationFormatted": "5:02",
"cover": "https://api.synkradio.co.uk/cover?artist=The%20Killers&title=All%20These%20Things%20That%20I've%20Done"
}
]
}Response schema
| Field | Type | Example | Description |
|---|---|---|---|
| found | boolean | true | |
| id | number | 953097 | Provider identifier for the resource. |
| name | string | "Mr. Brightside" | Display name of the entity. |
| explicit | boolean | false | True if the track is marked explicit. |
| isrc | string | "USIR20400274" | International Standard Recording Code. |
| trackNumber | number | 1 | Position on the parent release. |
| discNumber | number | 1 | |
| durationMs | number | 223000 | Duration in milliseconds. |
| durationFormatted | string | "3:43" | |
| artists | array<object> | 1 item | |
| primaryArtist | object | 4 fields | |
| album | object | 9 fields | Album the track belongs to. |
| audioFeatures | object | 12 fields | |
| recommendations | array<object> | 1 item |