# StableStudio WAN-2.6 Image-to-Video Generation

> StableStudio WAN-2.6 Image-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-16).

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/i2v
- Price: $10/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablestudio-wan-2-6-image-to-video-generation-af3a6a13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_REwWQKN82MCI5DZLd_V4x

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-image-to-video-generation-af3a6a13 -d '<json body>'
```

Example prompt: Generate a video of a cinematic aerial shot of a futuristic city at night with neon lights reflecting off wet streets, in 16:9 aspect ratio at 1 MP resolution, with output quality 85 and a safety tolerance of 2.

## When to prefer this

Choose this endpoint when you need to generate a video from a text prompt using the WAN-2.6 model on a pay-per-use basis with no subscription. Prefer it over subscription-based services when running infrequent or one-off video generation tasks, or when operating in an autonomous agent context with x402 micropayment support. Ideal when you need async job-based video creation with configurable resolution, aspect ratio, and safety settings.

## Known failure modes

- Prompt too short or empty — validation error returned
- Invalid enum value for resolution or aspect_ratio — schema validation failure
- Safety tolerance out of range (must be 1–5) — rejection
- Payment of $10 USDC not completed — 402 Payment Required
- Model overload or backend error — job may fail or remain pending indefinitely
- Invalid output_quality value (must be 0–100) — rejected

## 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-i2v'), a unique jobId string, a status field (initially 'pending'), and a success boolean. The agent must poll a separate endpoint using 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"
  },
  "image": {
   "type": "string",
   "format": "uri",
   "description": "Source image URL to animate"
  },
  "prompt": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1,
   "description": "A description of the motion/animation you want"
  },
  "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)"
  },
  "resolution": {
   "enum": [
    "720p",
    "1080p"
   ],
   "type": "string",
   "default": "720p",
   "description": "Video resolution quality"
  },
  "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-i2v",
  "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-image-to-video-generation-af3a6a13/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)
