Generate an about 5-second cinematic clip from a single text prompt
Generate an about 5-second cinematic clip from a single text prompt. Pay once via x402, then poll statusUrl for the MP4 download.
200000 (raw units)
price
8
calls / 30d
2
unique payers
2026-08-31
updated
Provider
vmi1759441.contaboserver.net · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3795cd5EaA98dBFad6B7445132302Af0B4B92A39",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"negative_prompt": "blurry, low quality",
"prompt": "A cinematic drone shot over misty mountains at sunrise"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"message": "Video generation started.",
"status": "processing",
"statusUrl": "https://example.com/api/x402/status?session_id=550e8400-e29b-41d4-a716-446655440000",
"taskId": "550e8400-e29b-41d4-a716-446655440000"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"negative_prompt": {
"maxLength": 2000,
"type": "string"
},
"notification_email": {
"format": "email",
"type": "string"
},
"prompt": {
"maxLength": 2000,
"type": "string"
}
},
"required": [
"prompt"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"message": {
"type": "string"
},
"status": {
"description": "Initial job status",
"type": "string"
},
"statusUrl": {
"description": "Poll GET this URL for download_url when completed",
"format": "uri",
"type": "string"
},
"taskId": {
"description": "Generation session id",
"type": "string"
}
},
"required": [
"taskId",
"status",
"statusUrl"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://vmi1759441.contaboserver.net/api/x402/text-to-video" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vmi1759441.contaboserver.net/api/x402/text-to-video");
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://vmi1759441.contaboserver.net/api/x402/text-to-video")
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/10949.json, and this resource appears in /discovery/resources and /discovery/search.