Skip to main content
GET
/
checklist
/
royaltyproducts
Check Royalty Products
curl --request GET \
  --url https://api.royalti.io/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.

Description

/checklist/royaltyproducts Retrieves a list of royalty products that exist in the sales data but don’t have corresponding product records. Requirements:
  • BigQuery dataset must be configured for the tenant
  • Requires valid authentication
Method: GET Headers:
  • x-tenant-id: Required. The tenant ID
  • Authorization: Required. Bearer token for authentication
Response:
  • count: Total number of royalty products
  • royaltyproducts: Array of product objects with details about their respective status.

Code Examples

const response = await fetch('https://api.royalti.io/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[]