Validate a composition body without saving it (dry-run)
Validate a composition body without saving it (dry-run)
10000 (raw units)
price
5
calls / 30d
5
unique payers
2026-09-11
updated
Provider
api.cueframe.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xA82C8B6971A7379BadB2FB96032D82aF46EcCc0A",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"accessibility": {
"audioDescriptionTrackId": "string",
"captionsTrackId": "string",
"notes": "string",
"signLanguageTrackId": "string"
},
"captions": {
"from": {
"clipId": "string"
},
"segments": [
{}
],
"source": "derived",
"style": {
"annotationColor": "string",
"backgroundColor": "string",
"color": "string",
"emphasisColor": "string",
"emphasisFontFamily": "string",
"emphasisFontStyle": "normal",
"emphasisFontWeight": 0,
"emphasisGradient": "string",
"emphasisLetterSpacing": 0,
"emphasisPlate": true,
"emphasisPlateAltColor": "string",
"emphasisPlateAltTextColor": "string",
"emphasisPlateColor": "string",
"emphasisPlatePadX": 0,
"emphasisPlatePadY": 0,
"emphasisPlateRadius": 0,
"emphasisPlateTextColor": "string",
"emphasisScale": 0,
"emphasisTextTransform": "none",
"entrance": "none",
"entranceMs": 0,
"entranceStaggerMs": 0,
"exitMs": 0,
"fontFamily": "string",
"fontSize": 0,
"fontWeight": 0,
"highlightColor": "string",
"maxWidthPercent": 0,
"plate": "glass",
"position": "top",
"textTransform": "none"
},
"zPlane": "front"
},
"format": {
"aspectRatio": "16:9",
"fps": 24,
"platform": "string",
"resolution": "hd"
},
"license": {
"notes": "string",
"source": "string",
"type": "string"
},
"markers": [
{
"endTime": 0,
"id": "string",
"kind": "string",
"metadata": {},
"name": "string",
"startTime": 0
}
],
"tracks": [
{
"contents": [
{}
],
"enabled": true,
"id": "string",
"kind": "video",
"name": "string",
"volume": 0
}
],
"v": 1
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"advisories": [
{
"clipId": "string",
"criterion": "string",
"detail": "string",
"fix": "string",
"rule": "string"
}
],
"errors": [
{
"category": "string",
"code": "string",
"fix": {},
"message": "string",
"retryable": true,
"stage": "string"
}
],
"quote": {
"estimatedJourneyTotalUsd": 0,
"jobSpendSoFarUsd": 0,
"thisStepUsd": 0
},
"valid": true,
"warnings": [
"string"
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {}
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.cueframe.ai/v1/composition/validate" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.cueframe.ai/v1/composition/validate");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.cueframe.ai/v1/composition/validate")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3042.json, and this resource appears in /discovery/resources and /discovery/search.