# x402engine Fast Video Generation

> x402engine Fast Video Generation is a paid API for AI agents from x402engine.app, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-14).

Generates a short video clip quickly from a text prompt or image input, paid via USDC micropayment at $0.55 per call

## Facts

- Endpoint: POST https://x402engine.app/api/video/fast
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402engine-fast-video-generation-716db0e8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CpaJOgY6VyYQlxF564RyJ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability x402engine-fast-video-generation-716db0e8 -d '<json body>'
```

Example prompt: Generate a short video clip of a golden retriever playing in autumn leaves in a sunny park — make it fast and cinematic.

## When to prefer this

Choose this endpoint when you need fast, pay-per-call video generation without a subscription, especially within an AI agent pipeline that requires on-demand video synthesis billed in USDC. Prefer this over subscription-based video APIs when usage is sporadic or cost-per-call billing is preferred. It's ideal for agentic workflows that need to generate video clips dynamically at runtime.

## Known failure modes

- Payment failure if USDC/USDm wallet balance is insufficient
- Prompt rejected if it violates content policy
- Timeout if the model is under heavy load
- Empty or corrupt video output if the prompt is too vague or contradictory
- 402 HTTP error if the micropayment header is missing or malformed

## How this service works

108 production APIs behind HTTP 402 micropayments. 72 LLMs, Kling V3 and Hailuo video generation, image generation, code execution, travel search, web scraping, TTS, and transaction simulation. Pay with USDC on Base, USDm on MegaETH, or USDC on Solana.

## Output

Returns a generated video file or a URL pointing to the rendered video clip, typically a short duration clip (a few seconds) produced by a fast video generation model such as Hailuo or Kling V3.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "prompt"
     ],
     "properties": {
      "prompt": {
       "type": "string",
       "example": "A cinematic drone shot rising over a misty mountain valley at sunrise",
       "description": "Describe the scene, motion, and camera direction"
      },
      "duration": {
       "type": "string",
       "default": "5",
       "example": "5",
       "description": "Fixed video duration"
      },
      "aspect_ratio": {
       "type": "string",
       "default": "16:9",
       "example": "16:9",
       "description": "Output aspect ratio: 16:9, 9:16, or 1:1"
      },
      "generate_audio": {
       "type": "boolean",
       "default": false,
       "example": false,
       "description": "Audio generation is fixed off for deterministic per-call pricing"
      },
      "negative_prompt": {
       "type": "string",
       "example": "blur, distortion, low quality",
       "description": "Visual qualities or artifacts to avoid"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402engine-fast-video-generation-716db0e8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402engine.app](https://www.zero.xyz/host/x402engine.app/llms.txt)
