mirrored listing x402 eip155:8453

Seedance 2

Seedance 2.0 — parametric text-to-video: choose duration (4-15s), resolution (480p/720p/1080p), ratio, seed, audio. Price scales with duration × resolution.

Do you run api.x402video.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
980000 (raw units)
price
6
calls / 30d
1
unique payers
2026-09-10
updated

Provider

api.x402video.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xC81a36fCdf531b6eD7ae8694220d59F9D3D0128B",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "980000",
    "maxTimeoutSeconds": 120
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "duration": 8,
          "generate_audio": true,
          "prompt": "a corgi surfing a small wave at sunset, cinematic",
          "ratio": "16:9",
          "resolution": "480p"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "job_id": "3f6e9a3a-0000-0000-0000-000000000000",
          "status": "pending_settlement",
          "status_url": "/jobs/3f6e9a3a-0000-0000-0000-000000000000"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "camera_fixed": {
                  "description": "Lock the camera position",
                  "type": "boolean"
                },
                "duration": {
                  "description": "Video length in seconds (default 5). Price scales linearly.",
                  "maximum": 15,
                  "minimum": 4,
                  "type": "integer"
                },
                "generate_audio": {
                  "description": "Generate synced audio (default false; ×1 on the per-second rate)",
                  "type": "boolean"
                },
                "prompt": {
                  "description": "Text prompt describing the video",
                  "type": "string"
                },
                "ratio": {
                  "description": "Aspect ratio (default adaptive)",
                  "enum": [
                    "16:9",
                    "4:3",
                    "1:1",
                    "3:4",
                    "9:16",
                    "21:9",
                    "adaptive"
                  ],
                  "type": "string"
                },
                "resolution": {
                  "description": "Output resolution (default 480p). Price scales with resolution.",
                  "enum": [
                    "480p",
                    "720p",
                    "1080p"
                  ],
                  "type": "string"
                },
                "seed": {
                  "description": "Random seed in [-1, 2^32-1]; -1 = random",
                  "type": "integer"
                }
              },
              "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": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.x402video.com/generate/seedance/custom"
# -> 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.x402video.com/generate/seedance/custom");
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.x402video.com/generate/seedance/custom")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8222.json, and this resource appears in /discovery/resources and /discovery/search.