GET
/track/creditsFull 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
| Name | Type | Required | Description |
|---|---|---|---|
| id | integer | optional | Upstream track id. |
| isrc | string | optional | ISRC code. |
| artist | string | optional | Artist name (use with title). |
| title | string | optional | Track 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 requesthttps://api.synkradio.co.uk/track/credits?isrc=USIR20400274&artist=Daft%20Punk&title=Around%20the%20WorldResponse
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
| Field | Type | Example | Description |
|---|---|---|---|
| id | number | 953097 | Provider identifier for the resource. |
| title | string | "Mr. Brightside" | Display title of the resource. |
| isrc | string | "USIR20400274" | International Standard Recording Code. |
| album | string | "Hot Fuss" | Album the track belongs to. |
| releaseDate | string | "2004" | Release date in YYYY-MM-DD form. |
| copyrightYear | string | "2007" | |
| label | string | "Universal Music Group International" | Record label name. |
| selfReleased | boolean | false | |
| copyrights | object | 2 fields | |
| artists | object | 2 fields | |
| writers | array | 0 items | |
| producers | array | 0 items | |
| mixers | array | 0 items | |
| engineers | array | 0 items | |
| allContributors | array<object> | 1 item | |
| groupedByRole | object | 1 fields | |
| totalContributors | number | 1 | |
| sources | object | 3 fields |