Validate a composition body without saving it (dry-run)
Validate a composition body without saving it (dry-run)
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1254 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.cueframe.ai/v1/composition/validate
| Category | Everything else |
|---|---|
| Provider host | api.cueframe.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 5 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 1254 ms |
Example input (from the provider)
{
"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"
}
Promised output schema (from the provider)
{
"$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"
}