mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Generates video from a text prompt via fal

Generates video from a text prompt via fal.ai Bytedance Seedance. Duration, aspect ratio, and resolution are configurable. Returns a hosted MP4 URL plus fal request id and seed. Use it for AI video, Seedance generation, generative video, and cinematic clips from a prompt.

Do you run x402.agentutility.ai? 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
500000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-07
updated

Provider

x402.agentutility.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x6c0752c09e7F6fA6526fCDf40e456a159ebB5621",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "500000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "FJqAJ4dXkFbrp3EEo8E9x98iaBGUQwaU8Srz5ePfUXLH",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "500000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "discoverable": true,
    "info": {
      "input": {
        "body": {
          "aspect_ratio": "16:9",
          "duration": "5s",
          "prompt": "A golden retriever running through a field of sunflowers, slow motion",
          "resolution": "720p"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "aspect_ratio": "16:9",
          "duration": "5s",
          "fal_request_id": "fal_vid...",
          "model": "fal-ai/bytedance/seedance/v1/pro/text-to-video",
          "prompt": "A golden retriever running through a field of sunflowers, slow motion",
          "resolution": "720p",
          "seed": 42,
          "source": "fal-ai",
          "video_url": "https://v3.fal.media/files/abc/xyz/video.mp4"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "aspect_ratio": {
                  "description": "Aspect ratio: '16:9', '9:16', '1:1', '4:3'. Default '16:9'.",
                  "type": "string"
                },
                "duration": {
                  "description": "Clip length, e.g. '5s' or '10s'. Default '5s'.",
                  "type": "string"
                },
                "model": {
                  "description": "Override the fal.ai model. Default 'fal-ai/bytedance/seedance/v1/pro/text-to-video'.",
                  "type": "string"
                },
                "prompt": {
                  "description": "Video scene description.",
                  "type": "string"
                },
                "resolution": {
                  "description": "Video resolution: '720p', '480p'. Default '720p'.",
                  "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": {
                "aspect_ratio": {
                  "type": "string"
                },
                "duration": {
                  "type": "string"
                },
                "fal_request_id": {
                  "type": "string"
                },
                "model": {
                  "type": "string"
                },
                "prompt": {
                  "type": "string"
                },
                "resolution": {
                  "type": "string"
                },
                "seed": {
                  "type": "integer"
                },
                "source": {
                  "type": "string"
                },
                "video_url": {
                  "type": "string"
                }
              },
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "builder-code": {
    "info": {
      "a": "bc_awpbwsy3"
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "additionalProperties": false,
      "properties": {
        "a": {
          "description": "App builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        },
        "s": {
          "description": "Service builder codes",
          "items": {
            "pattern": "^[a-z0-9_]{1,32}$",
            "type": "string"
          },
          "type": "array"
        },
        "w": {
          "description": "Wallet builder code",
          "pattern": "^[a-z0-9_]{1,32}$",
          "type": "string"
        }
      },
      "type": "object"
    }
  }
}

Use it

curl

curl "https://x402.agentutility.ai/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://x402.agentutility.ai/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://x402.agentutility.ai/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 header

Machine-readable

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