# StableStudio WAN-2.6 Text-to-Video Generation

> StableStudio WAN-2.6 Text-to-Video Generation is a paid API for AI agents from stablestudio.io, paid per call via x402, $10/call, status unknown (last checked 2026-09-15).

Generates a video from a text prompt using the WAN-2.6 model, returning a job ID for async retrieval

## Facts

- Endpoint: POST https://stablestudio.io/api/generate/wan-2.6/t2v
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablestudio-wan-2-6-text-to-video-generation-33ae39cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zB_oK1d3DuIx9wU5CrMmi

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 stablestudio-wan-2-6-text-to-video-generation-33ae39cb -d '<json body>'
```

Example prompt: Use StableStudio to generate a cinematic 16:9 video of a lone astronaut walking across a red Martian desert at sunset, dust swirling in the air — 1 MP resolution, WebP output, quality 90, safety level 2.

## When to prefer this

Choose this endpoint when you need to generate a video from a text description using the WAN-2.6 model without a subscription commitment. Ideal for pay-per-use agentic workflows, one-off creative tasks, or when cost predictability per generation ($10 USDC flat) is important. Prefer over subscription-based services when call volume is low or sporadic.

## Known failure modes

- Invalid or empty prompt returns 400 validation error
- Unsupported resolution or aspect ratio enum value returns 400
- Safety tolerance out of range (outside 1-5) returns 400
- Payment failure or insufficient USDC balance returns 402
- Rate limiting or server overload returns 429 or 503
- Job creation succeeds but video generation fails asynchronously — check job status endpoint for final error

## How this service works

Pay-per-generation AI image and video creation. No subscriptions ever.

## Output

A JSON object containing the job type ('wan-2.6-t2v'), a unique jobId string for polling the result, the current status ('pending'), and a success boolean. The agent must use the jobId to retrieve the finished video once processing completes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "seed": {
   "type": "integer",
   "maximum": 2147483647,
   "minimum": -9007199254740991,
   "description": "Random seed for reproducibility"
  },
  "size": {
   "enum": [
    "1280*720",
    "720*1280",
    "1920*1080",
    "1080*1920"
   ],
   "type": "string",
   "default": "1280*720",
   "description": "Video resolution and orientation"
  },
  "prompt": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1,
   "description": "A detailed description of the video you want to generate"
  },
  "audioUrl": {
   "type": "string",
   "format": "uri",
   "description": "URL to audio file for sync"
  },
  "duration": {
   "enum": [
    "5",
    "10",
    "15"
   ],
   "type": "string",
   "default": "5",
   "description": "Duration of the video in seconds"
  },
  "multiShots": {
   "type": "boolean",
   "default": false,
   "description": "Enable multi-shot narrative (requires prompt expansion)"
  },
  "negativePrompt": {
   "type": "string",
   "description": "Things to avoid in the generated video"
  },
  "enablePromptExpansion": {
   "type": "boolean",
   "default": true,
   "description": "Let the model enhance your prompt"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "wan-2.6-t2v",
  "jobId": "cmpbmzaee000j04jrzx4f43tw",
  "status": "pending",
  "pollUrl": "https://stablestudio.dev/api/jobs/cmpbmzaee000j04jrzx4f43tw",
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablestudio-wan-2-6-text-to-video-generation-33ae39cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablestudio.io](https://www.zero.xyz/host/stablestudio.io/llms.txt)
