SYNK
GET/track/isrc

Direct 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

NameTypeRequiredDescription
isrcstringrequired12-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 request
https://api.synkradio.co.uk/track/isrc?isrc=USIR20400274

Response

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

FieldTypeExampleDescription
foundbooleantrue
idnumber953097Provider identifier for the resource.
namestring"Mr. Brightside"Display name of the entity.
explicitbooleanfalseTrue if the track is marked explicit.
isrcstring"USIR20400274"International Standard Recording Code.
trackNumbernumber1Position on the parent release.
discNumbernumber1
durationMsnumber223000Duration in milliseconds.
durationFormattedstring"3:43"
artistsarray<object>1 item
primaryArtistobject4 fields
albumobject9 fieldsAlbum the track belongs to.
audioFeaturesobject12 fields
recommendationsarray<object>1 item