Skip to main content
GET
/
checklist
/
royaltyproducts
Check Royalty Products
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/checklist/royaltyproducts \
  --header 'Authorization: Bearer <token>'
{
  "count": 70,
  "royaltyproducts": [
    {
      "upc": "36336749436",
      "catalog": "",
      "artists": "Soltune",
      "displayArtist": "Soltune",
      "type": "Audio",
      "format": "Single",
      "title": "Holy Spirit",
      "releaseDate": "",
      "mainGenre": "",
      "subGenre": "",
      "Label": "DIXTRIT.media",
      "status": "Live",
      "distribution": "Symphonic Distribution",
      "tracklist": "NGA601900320"
    }
  ]
}
This endpoint requires authentication. Include your Bearer token in the Authorization header.

Code Examples

const response = await fetch('https://server26-dot-royalti-project.uc.r.appspot.com/checklist/royaltyproducts', {
  method: 'GET',
  headers: {
    'Authorization': `Bearer ${token}`,
  },
});

const data = await response.json();
console.log(data);

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

Successfully retrieved royalty products checklist

count
integer

Total number of royalty products

royaltyproducts
object[]