Bulk Delivery Readiness Check
curl --request GET \
--url https://api.royalti.io/product/delivery-readiness \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.royalti.io/product/delivery-readiness"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.royalti.io/product/delivery-readiness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.royalti.io/product/delivery-readiness",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.royalti.io/product/delivery-readiness"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.royalti.io/product/delivery-readiness")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.royalti.io/product/delivery-readiness")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "Readiness check completed",
"data": {
"provider": "<string>",
"summary": {
"total": 123,
"ready": 123,
"blocked": 123
},
"items": [
{
"productId": "<string>",
"upc": "<string>",
"title": "<string>",
"isValid": true,
"errorCount": 123,
"errors": [
"<string>"
],
"checks": {
"upc": {
"present": true,
"value": "<string>"
},
"isrc": {
"total": 123,
"present": 123,
"missing": 123
},
"label": {
"present": true,
"value": "<string>"
},
"language": {
"total": 123,
"present": 123,
"missing": 123,
"unsupported": 123,
"unsupportedTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>",
"language": "<string>",
"reason": "<string>"
}
]
},
"splits": {
"state": "none",
"sumPercent": 123
},
"artwork": {
"width": 123,
"height": 123,
"meetsSpec": true,
"selectedKey": "<string>",
"source": "override",
"candidates": [
{
"key": "<string>",
"name": "<string>",
"width": 123,
"height": 123,
"meetsFloor": true,
"deliverable": true,
"isSelected": true,
"isOverride": true
}
]
},
"audio": {
"total": 123,
"present": 123,
"missing": 123,
"missingTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>"
}
]
},
"contributors": {
"total": 123,
"present": 123,
"missing": 123,
"missingTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>"
}
]
},
"metadata": {
"missing": [
"<string>"
]
},
"artworkReadiness": {
"global": {
"min": 123,
"meetsSpec": true
},
"perProvider": {}
},
"addon": {
"active": true
}
}
}
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": [
"<string>"
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": [
"<string>"
]
}
}Product
Bulk Delivery Readiness Check
/product/delivery-readiness
GET
/
product
/
delivery-readiness
Bulk Delivery Readiness Check
curl --request GET \
--url https://api.royalti.io/product/delivery-readiness \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.royalti.io/product/delivery-readiness"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.royalti.io/product/delivery-readiness', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.royalti.io/product/delivery-readiness",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.royalti.io/product/delivery-readiness"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.royalti.io/product/delivery-readiness")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.royalti.io/product/delivery-readiness")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "Readiness check completed",
"data": {
"provider": "<string>",
"summary": {
"total": 123,
"ready": 123,
"blocked": 123
},
"items": [
{
"productId": "<string>",
"upc": "<string>",
"title": "<string>",
"isValid": true,
"errorCount": 123,
"errors": [
"<string>"
],
"checks": {
"upc": {
"present": true,
"value": "<string>"
},
"isrc": {
"total": 123,
"present": 123,
"missing": 123
},
"label": {
"present": true,
"value": "<string>"
},
"language": {
"total": 123,
"present": 123,
"missing": 123,
"unsupported": 123,
"unsupportedTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>",
"language": "<string>",
"reason": "<string>"
}
]
},
"splits": {
"state": "none",
"sumPercent": 123
},
"artwork": {
"width": 123,
"height": 123,
"meetsSpec": true,
"selectedKey": "<string>",
"source": "override",
"candidates": [
{
"key": "<string>",
"name": "<string>",
"width": 123,
"height": 123,
"meetsFloor": true,
"deliverable": true,
"isSelected": true,
"isOverride": true
}
]
},
"audio": {
"total": 123,
"present": 123,
"missing": 123,
"missingTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>"
}
]
},
"contributors": {
"total": 123,
"present": 123,
"missing": 123,
"missingTracks": [
{
"number": 123,
"assetId": "<string>",
"title": "<string>"
}
]
},
"metadata": {
"missing": [
"<string>"
]
},
"artworkReadiness": {
"global": {
"min": 123,
"meetsSpec": true
},
"perProvider": {}
},
"addon": {
"active": true
}
}
}
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": [
"<string>"
]
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>",
"details": [
"<string>"
]
}
}This endpoint requires authentication. Include your Bearer token in the Authorization header.
Description
/product/delivery-readiness Description: Bulk delivery-readiness check across the tenant’s catalog for a single provider. Returns one row per product withisValid + errorCount +
the full structured checks breakdown, so the client can render a
“FUGA Ready” column/filter without N round-trips per product.
checks.artwork.candidates[].key is the value
PATCH /product/{id}/cover-art accepts to override the delivered
cover.
Authorization:
- Required role:
useror higher
GET
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
| provider | string | Delivery provider to validate against. Default: fuga-csv. |
| productIds | string | Comma-separated product IDs to limit the check to. Omit to check the whole catalog (up to limit). |
| limit | integer | Max products to check. Default 500, capped at 1000. |
Code Examples
const response = await fetch('https://api.royalti.io/product/delivery-readiness', {
method: 'GET',
headers: {
'Authorization': `Bearer ${token}`,
},
});
const data = await response.json();
console.log(data);
import requests
response = requests.get(
'https://api.royalti.io/product/delivery-readiness',
headers={
'Authorization': f'Bearer {token}'
},
)
data = response.json()
print(data)
curl -X GET https://api.royalti.io/product/delivery-readiness \
-H "Authorization: Bearer YOUR_TOKEN" \
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Query Parameters
Comma-separated product IDs.
Required range:
x <= 1000⌘I