curl --request GET \
--url https://api.royalti.io/checklist/royaltyassets \
--header 'Authorization: Bearer <token>'{
"count": 123,
"royaltyassets": [
{
"isrc": "<string>",
"title": "<string>",
"version": "<string>",
"artist": "<string>",
"displayArtist": "<string>",
"type": "<string>",
"mainGenre": "<string>",
"subGenre": "<string>"
}
]
}/checklist/royaltyassets
curl --request GET \
--url https://api.royalti.io/checklist/royaltyassets \
--header 'Authorization: Bearer <token>'{
"count": 123,
"royaltyassets": [
{
"isrc": "<string>",
"title": "<string>",
"version": "<string>",
"artist": "<string>",
"displayArtist": "<string>",
"type": "<string>",
"mainGenre": "<string>",
"subGenre": "<string>"
}
]
}GET
Headers:
x-tenant-id: Required. The tenant IDAuthorization: Required. Bearer token for authenticationconst response = await fetch('https://api.royalti.io/checklist/royaltyassets', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);