SYNK
GET/track/credits

Full contributor credits for a track, aggregated across multiple music metadata providers so you get the richest union of data available: main artists, featured artists, writers, composers, producers, mixers and engineers. Also returns the record label, copyright year, ℗/© strings and release date from the parent album. Grouped by role for easy consumption.

Rate limit
60 req/min
Caching
Cached in the internal database for 24 hours.
Authentication
Send a User-Agent header containing a contact email. See authentication.

Parameters

NameTypeRequiredDescription
idintegeroptionalUpstream track id.
isrcstringoptionalISRC code.
artiststringoptionalArtist name (use with title).
titlestringoptionalTrack title (use with artist).

Request

curl 'https://api.synkradio.co.uk/track/credits' \
  -H 'User-Agent: [email protected]'

Try it

GETTry it
Sends a real request
https://api.synkradio.co.uk/track/credits?isrc=USIR20400274&artist=Daft%20Punk&title=Around%20the%20World

Response

200 application/json
{
  "id": 953097,
  "title": "Mr. Brightside",
  "isrc": "USIR20400274",
  "album": "Hot Fuss",
  "releaseDate": "2004",
  "copyrightYear": "2007",
  "label": "Universal Music Group International",
  "selfReleased": false,
  "copyrights": {
    "p": "℗ 2007 UMG Recordings, Inc.",
    "c": "© 2004 UMG Recordings, Inc."
  },
  "artists": {
    "main": [
      "The Killers"
    ],
    "featured": []
  },
  "writers": [],
  "producers": [],
  "mixers": [],
  "engineers": [],
  "allContributors": [
    {
      "id": 897,
      "name": "The Killers",
      "role": "Main"
    }
  ],
  "groupedByRole": {
    "Main": [
      {
        "id": 897,
        "name": "The Killers"
      }
    ]
  },
  "totalContributors": 1,
  "sources": {
    "primary": true,
    "commercial": true,
    "catalogue": true
  }
}

Response schema

FieldTypeExampleDescription
idnumber953097Provider identifier for the resource.
titlestring"Mr. Brightside"Display title of the resource.
isrcstring"USIR20400274"International Standard Recording Code.
albumstring"Hot Fuss"Album the track belongs to.
releaseDatestring"2004"Release date in YYYY-MM-DD form.
copyrightYearstring"2007"
labelstring"Universal Music Group International"Record label name.
selfReleasedbooleanfalse
copyrightsobject2 fields
artistsobject2 fields
writersarray0 items
producersarray0 items
mixersarray0 items
engineersarray0 items
allContributorsarray<object>1 item
groupedByRoleobject1 fields
totalContributorsnumber1
sourcesobject3 fields