# StableStudio Seedance Text-to-Video Generation

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

Generates a video from a text prompt using the Seedance T2V model, returning a job ID for async retrieval

## Facts

- Endpoint: POST https://stablestudio.io/api/generate/seedance/t2v
- Price: $20/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablestudio-seedance-text-to-video-generation-6129961f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mhXhWITDjw9Fj2tyH3uf-

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-seedance-text-to-video-generation-6129961f -d '<json body>'
```

Example prompt: Use StableStudio to generate a video of a lone astronaut walking across a red Martian landscape at sunset, in 16:9 aspect ratio at 1 MP resolution, PNG output at quality 90, with safety tolerance 2.

## When to prefer this

Choose this endpoint when you need pay-per-use text-to-video generation without a subscription, specifically using the Seedance T2V model via StableStudio. Prefer this over subscription-based video platforms when cost predictability per generation matters, or when integrating into an agentic workflow that needs async job-based video creation with configurable resolution and aspect ratio.

## Known failure modes

- Prompt too long (exceeds 10,000 characters) — validation error
- Invalid enum value for resolution, aspect_ratio, or output_format — schema validation error
- Safety tolerance out of range (must be 1-5) — validation error
- Payment failure or insufficient USDC — 402 payment required error
- Model overload or queue timeout — job may remain pending indefinitely
- Seed value out of integer bounds — validation error
- Empty or missing prompt — required field error

## How this service works

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

## Output

A JSON object containing the job type ('seedance-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 completed video once processing finishes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "prompt": {
   "type": "string",
   "maxLength": 4000,
   "minLength": 1,
   "description": "A detailed description of the video to generate"
  },
  "duration": {
   "enum": [
    "4",
    "5",
    "6",
    "7",
    "8",
    "9",
    "10",
    "11",
    "12",
    "13",
    "14",
    "15"
   ],
   "type": "string",
   "default": "5",
   "description": "Duration of the video in seconds"
  },
  "resolution": {
   "enum": [
    "720x720",
    "720x960",
    "960x720",
    "1280x720",
    "720x1280",
    "1280x540"
   ],
   "type": "string",
   "description": "Optional exact pixel resolution override"
  },
  "aspectRatio": {
   "enum": [
    "1:1",
    "3:4",
    "4:3",
    "16:9",
    "9:16",
    "21:9"
   ],
   "type": "string",
   "default": "16:9",
   "description": "Aspect ratio of the output video"
  },
  "callBackUrl": {
   "type": "string",
   "format": "uri",
   "description": "Optional Kinovi callback URL for API users"
  },
  "outputResolution": {
   "enum": [
    "480p",
    "720p",
    "1080p"
   ],
   "type": "string",
   "default": "720p",
   "description": "Output quality tier"
  },
  "upscaleResolution": {
   "type": "string",
   "const": "4k",
   "description": "Upscale the generated video to 4K"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "type": "seedance-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-seedance-text-to-video-generation-6129961f/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)
