# kino402 Seedance 1.5 Pro Video Generator (5s 480p)

> kino402 Seedance 1.5 Pro Video Generator (5s 480p) is a paid API for AI agents from kino402.com, paid per call via x402, $0.929/call, status unknown (last checked 2026-09-14).

Generates a 5-second 480p video clip using the Seedance 1.5 Pro model, returning a job ID and polling URL for async retrieval

## Facts

- Endpoint: POST https://kino402.com/v1/generate
- Price: $0.929/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kino402-seedance-1-5-pro-video-generator-5s-480p-082e74f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J2jugb8re7XBD3RfJvVfM

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 kino402-seedance-1-5-pro-video-generator-5s-480p-082e74f6 -d '<json body>'
```

Example prompt: Generate a 5-second 480p video of a golden retriever running on a sunny beach at sunset — use Seedance 1.5 Pro and give me the job ID so I can check when it's ready.

## When to prefer this

Choose this endpoint when you need a short (5-second), 480p AI-generated video from a text prompt at a fixed per-call cost via x402 micropayment, and you are comfortable with an async job-polling workflow. It is ideal for rapid prototyping, preview renders, or automated pipelines that need affordable short video generation without managing model infrastructure. Prefer it over higher-resolution or longer-form alternatives when speed and cost matter more than quality, or when 480p resolution is sufficient for your use case.

## Known failure modes

- 402 Payment Required — returned before payment if the request is unpaid, includes the exact price quote for the submitted body
- Invalid or oversized body — JSON body exceeding 16 KB may be rejected
- Job timeout — async jobs may remain queued or fail if the Seedance backend is unavailable
- Invalid generation parameters — unsupported prompt fields or malformed JSON cause 400-level errors
- Network timeout on status polling — the status URL may need repeated polling before the video is ready

## How this service works

Seedance 1.5 pro: 4s at 480p

## Output

Returns a JSON object containing a job ID (e.g. 'k3n8s1v0w2x9'), a status field ('queued'), a status URL for polling the job result, and pricing info in USD and atomic USDC. The actual video is retrieved asynchronously by polling the status URL until the job completes.

## 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": {
     "type": "object",
     "description": "a JSON body, up to 16 KB. The price is parametric: an unpaid POST answers 402 with the exact quote for the body you sent."
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "format"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "text"
    },
    "format": {
     "type": "string",
     "const": "application/json",
     "description": "a job id and a status url"
    },
    "example": {
     "description": "a sample response from the real code path"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "text",
 "format": "application/json",
 "example": {
  "price": {
   "usd": "$0.929",
   "atomic_usdc": "929000"
  },
  "job_id": "k3n8s1v0w2x9",
  "status": "queued",
  "status_url": "https://kino402.com/v1/jobs/k3n8s1v0w2x9"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kino402-seedance-1-5-pro-video-generator-5s-480p-082e74f6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kino402.com](https://www.zero.xyz/host/kino402.com/llms.txt)
