# x402-tokens Wan2.7 Text-to-Video Generation

> x402-tokens Wan2.7 Text-to-Video Generation is a paid API for AI agents from x402-tokens.fly.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Generates video clips from text prompts using Together AI's Wan2.7 T2V model, billed per clip block and reconciled to actual cost via x402 micropayment protocol

## Facts

- Endpoint: POST https://x402-tokens.fly.dev/v1/videos/generations
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-tokens-wan2-7-text-to-video-generation-73f0fcbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DiHup7zIMhXraK0tax8kR

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 x402-tokens-wan2-7-text-to-video-generation-73f0fcbf -d '<json body>'
```

Example prompt: Generate a video clip of a golden retriever running through a sunlit meadow with flowers blowing in the breeze — use the Wan2.7 text-to-video model.

## When to prefer this

Choose this endpoint when you need text-to-video generation powered by the Wan-AI Wan2.7 T2V model via Together AI, with per-call micropayment billing reconciled to actual cost. It is well-suited for agents that need programmatic, pay-as-you-go video synthesis without managing a Together AI account directly. Prefer this over image-generation siblings on the same host when the output must be a video clip rather than a static image.

## Known failure modes

- Invalid or missing prompt body returns a 400 bad request
- Payment failure or insufficient USDC balance causes a 402 Payment Required response
- Model overload or Together AI backend timeout causes a 503 or timeout error
- Malformed bodyType (not json/form-data/text) causes schema validation failure
- Prompt content policy violation may result in a rejection response from the underlying model

## How this service works

Together Wan-AI/wan2.7-t2v — per-clip-block, reconciled to actual cost, at 2026-08-31T16:51:30.499Z

## Output

Returns a generated video clip (or reference/URL to it) produced by the Wan-AI/wan2.7-t2v model via Together AI. The response is reconciled to actual compute cost post-call, charged in USDC via the x402 payment protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-tokens-wan2-7-text-to-video-generation-73f0fcbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-tokens.fly.dev](https://www.zero.xyz/host/x402-tokens.fly.dev/llms.txt)
