SYNK
GET/cover

Grabs an album cover image. Chuck in an artist and title, or just an ISRC if you have one. Images get upscaled to 1024×1024 so they actually look decent.

Rate limit
60 req/min
Caching
Cached in the internal database indefinitely. First request is slow-ish, everything after is instant.
Authentication
Send a User-Agent header containing a contact email. See authentication.

Parameters

NameTypeRequiredDescription
artiststringoptionalArtist name. Needed if you are not passing an ISRC. If there are multiple artists separated by commas, it just uses the first one.
titlestringoptionalTrack title. Needed if you are not passing an ISRC. Stuff in brackets like "(Radio Edit)" gets stripped automatically.
isrcstringoptionalISRC code. If you have got this, you do not need artist or title.

Request

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

Try it

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

Response

Returns binary image/jpeg. Pipe the response body directly to a file or stream.