Wan Text-to-Video Job (480p)
Wan Text-to-Video Job (480p)
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
cleared.ink · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x49b7945ebe2e10fb7A012f97095c3120e9753A35",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1",
"payTo": "8iXcsEsCMEENEFPJiPNRzuWMqgspE2J1HDbFVvZzrEwB",
"asset": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"enable_prompt_expansion": true,
"negative_prompt": "blurry, low quality, distorted, watermark, unreadable text",
"prompt": "A cinematic five second video of luminous geometric insects swarming through a dark server cathedral, forming glowing frames before dissolving into motion.",
"seed": 12345
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"job_id": "job_i9j0k1l2",
"job_token": "jt_example",
"price_paid": "0.01 USDC",
"result_url": "/wan/jobs/job_i9j0k1l2/result?token=jt_example",
"status": "queued",
"status_url": "/wan/jobs/job_i9j0k1l2?token=jt_example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"enable_prompt_expansion": {
"description": "Whether to enable automatic prompt expansion before rendering. Defaults to true when omitted.",
"type": "boolean"
},
"negative_prompt": {
"description": "Optional text describing visual elements to suppress, such as blurry, low quality, distorted, or unwanted artifacts.",
"type": "string"
},
"prompt": {
"description": "Natural-language prompt for text-to-video generation, including subject, action, camera movement, lighting, and style.",
"type": "string"
},
"seed": {
"description": "Optional integer seed for reproducible generation. Must be between 0 and 2147483647.",
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
},
"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": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://cleared.ink/wan/t2v/480p" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://cleared.ink/wan/t2v/480p");
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://cleared.ink/wan/t2v/480p")
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/14986.json, and this resource appears in /discovery/resources and /discovery/search.