ToolAssay

Async text-to-video and image-to-video generation on Venice (WAN 2.7, HappyHorse

Async text-to-video and image-to-video generation on Venice (WAN 2.7, HappyHorse, and more), paid per request in USDC on Base via x402, no API key. Model ids via GET /api/v1/models?type=video. Lifecycle: quote, queue, retrieve, complete (see related routes).

Answeringour last check, 2026-09-24
1 of 1checks answered this week
283 msmedian answer time
$0.275listed price per call
$0.275price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://x402.aispace.bot/api/v1/video/queue

CategoryImage and media
Provider hostx402.aispace.bot
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days8 from 4 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.275 283 ms

Example input (from the provider)

{
  "body": {
    "aspect_ratio": "16:9",
    "duration": "5s",
    "model": "wan-2-7-text-to-video",
    "prompt": "A paper boat sailing down a rain-soaked street, slow motion"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "aspect_ratio": {
              "description": "Frame aspect ratio when the model lists model_spec.constraints.aspect_ratios. Not globally required \u2014 image-to-video models that list none should omit it.",
              "type": "string"
            },
            "audio": {
              "description": "Only send this when the model lists audio_configurable=true. Mute models (audio:false) reject the field entirely \u2014 omit it, do not send audio:false.",
              "type": "string"
            },
            "duration": {
              "description": "Clip length. Must be a value from this model's model_spec.constraints.durations on GET /api/v1/models?type=video \u2014 models differ (some have 5s, some only even lengths like 4s/6s/8s).",
              "type": "string"
            },
            "image": {
              "description": "Alias for image_url. Accepted and remapped before the Venice proxy; prefer image_url.",
              "type": "string"
            },
            "image_url": {
              "description": "Source image (URL or base64) for image-to-video models. Required when model_type is image-to-video. Venice field name is image_url.",
              "type": "string"
            },
            "model": {
              "description": "Venice video model id. See GET /api/v1/models?type=video (e.g. wan-2-7-text-to-video, wan-2-7-image-to-video).",
              "type": "string"
            },
            "prompt": {
              "description": "Video description / motion prompt.",
              "minLength": 1,
              "type": "string"
            },
            "resolution": {
              "description": "Output resolution. When the model lists model_spec.constraints.resolutions, use one of those values.",
              "type": "string"
            }
          },
          "required": [
            "model",
            "prompt",
            "duration"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "model": {
              "type": "string"
            },
            "queue_id": {
              "type": "string"
            }
          },
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON