> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anyfast.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Seedance 1.5 Pro t2v

> ByteDance's Seedance 1.5 Pro text-to-video model. Generate videos from text prompts.

Seedance 1.5 Pro t2v is a text-to-video generation model from ByteDance's Seedance series, available through Anyfast API.

## Key capabilities

* **Text-to-Video** — Generate videos purely from text prompts
* **Flexible Duration** — 4–12 second videos
* **Multiple Ratios** — 16:9, 4:3, 1:1, 3:4, 9:16, 21:9
* **Multiple Resolutions** — 480p, 720p, 1080p

## Quick example

<CodeGroup>
  ```bash cURL theme={null}
  curl https://www.anyfast.ai/v1/video/generations \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "doubao-seedance-1-5-pro-251215",
      "content": [
        {"type": "text", "text": "A cat walking through sunflowers at golden hour"}
      ],
      "ratio": "16:9",
      "duration": 5,
      "resolution": "720p"
    }'
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://www.anyfast.ai/v1/video/generations",
      headers={
          "Authorization": "Bearer YOUR_API_KEY",
          "Content-Type": "application/json"
      },
      json={
          "model": "doubao-seedance-1-5-pro-251215",
          "content": [
              {"type": "text", "text": "A cat walking through sunflowers at golden hour"}
          ],
          "ratio": "16:9",
          "duration": 5,
          "resolution": "720p"
      }
  )

  task = response.json()
  print(f"Task ID: {task['id']}")
  ```
</CodeGroup>

## Parameters

| Parameter      | Type    | Required | Description                                                  |
| -------------- | ------- | -------- | ------------------------------------------------------------ |
| `model`        | string  | Yes      | Must be `doubao-seedance-1-5-pro-251215`                     |
| `content`      | array   | Yes      | Array with text item only                                    |
| `ratio`        | string  | No       | `16:9`, `4:3`, `1:1`, `3:4`, `9:16`, `21:9`. Default: `16:9` |
| `resolution`   | string  | No       | `480p`, `720p`, `1080p`. Default: `720p`                     |
| `duration`     | integer | No       | 4–12 seconds. Default: `5`                                   |
| `watermark`    | boolean | No       | Default: `false`                                             |
| `seed`         | integer | No       | Random seed                                                  |
| `camera_fixed` | boolean | No       | Default: `false`                                             |

<Card title="API Reference" icon="code" href="/api-reference/model-api/bytedance/doubao-seedance-1-5-pro-251215-t2v">
  View the interactive API playground for Seedance 1.5 Pro t2v.
</Card>

<script src="/feedback.js" />
