mirrored listing x402 eip155:8453

AI video generation from a text prompt

AI video generation from a text prompt. Returns an 8-second 720p clip with native audio. Use for short-form video, b-roll, product shots, music-video visuals, social clips, and ads. Include sound cues (instruments, voices, weather, movement) since audio is generated from the scene; a silent scene renders near-silent by design. Async by default: poll the returned pollUrl for videoUrl, or pass ?async=false to block.

Do you run app.suedeai.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
4990000 (raw units)
price
4
calls / 30d
4
unique payers
2026-09-17
updated

Provider

app.suedeai.ai · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x10FF767043A1723E0BB5B9207bC37D3442cC9E4F",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "4990000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "aspectRatio": "16:9",
          "durationSeconds": 8,
          "prompt": "<prompt>"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "jobId": "video-job-example",
          "pollUrl": "https://app.suedeai.ai/agent/video/video-job-example",
          "provider": "suede",
          "status": "queued"
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "aspectRatio": {
                  "description": "Desired frame aspect ratio.",
                  "enum": [
                    "16:9",
                    "9:16",
                    "1:1"
                  ],
                  "type": "string"
                },
                "durationSeconds": {
                  "default": 8,
                  "description": "Requested clip length in seconds; the service maps it to a supported render length.",
                  "maximum": 15,
                  "minimum": 3,
                  "type": "integer"
                },
                "prompt": {
                  "description": "Narrative or visual prompt to drive the video concept.",
                  "type": "string"
                }
              },
              "required": [
                "prompt"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "headers": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "queryParams": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "jobId": {
                  "description": "Job identifier for the render.",
                  "type": "string"
                },
                "pageUrl": {
                  "description": "Suede share-page URL when available.",
                  "format": "uri",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "pollUrl": {
                  "description": "Absolute URL to GET for the finished render, returned on the async accept. Needs no further payment. Null on a poll response.",
                  "format": "uri",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "provider": {
                  "description": "Provider handling the render.",
                  "type": "string"
                },
                "status": {
                  "description": "Current render status: 'queued' or 'processing' while the render runs, then the terminal 'completed' or 'failed'.",
                  "type": "string"
                },
                "videoId": {
                  "description": "Suede video record identifier when available.",
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "videoUrl": {
                  "description": "Generated video URL when the render is complete; null until then.",
                  "format": "uri",
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "required": [
                "jobId",
                "status",
                "provider"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "skyfire": {
    "description": "Suede also accepts Skyfire pay+jwt/kya-pay+jwt tokens in the PAYMENT-SIGNATURE header on this endpoint.",
    "header": "PAYMENT-SIGNATURE",
    "tokenTypes": [
      "pay+jwt",
      "kya-pay+jwt"
    ]
  }
}

Use it

curl

curl "https://app.suedeai.ai/agent/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://app.suedeai.ai/agent/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://app.suedeai.ai/agent/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/2202.json, and this resource appears in /discovery/resources and /discovery/search.