Skip to main content

F.A.Q

Q. How do I get an API key ?

A. If you are interested in having access to our catalog for development, please submit a request here.

Q. I inputed my API key in the header, but the calls are not working. Help?!

A. Be sure to check out the authentication process in order to get the authorization token for the other calls.

A. To get the links for the videos (or other resources related to the assets) for a song, you need to pass the songs's id to the endpoint /songs/{ids}.
Note that it is possible to pass a list of ids for this call.
IE: /songs/id1,id2,id3

Q. What are the possible values for the parameters era, genre, language and starting-letter in the endpoints for /songs ?

A. The available list of possible values can be queried through the Filters API with the respective filter calls. For example, the parameter era would be the endpoint /eras.

Q. How do I get the ids of artist for the call /artists/{ids} ?

A. There are two ways to query for the ids of an artist

  • If you are not looking for a specific artist, you can get a list of artists with their ids through the endpoint /artists. You can customize the list by passing in different parameters (ie: gender) (see API doc for the full list of parameters).
  • You can also use the endpoint /search-artists with the artist's name.

Q. What are the data models and schemas of the response for each endpoint?

A. You can find this information in the API documentation section, as well as examples values of the responses.