> ## 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.0 Lite t2v

> ByteDance's Seedance 1.0 Lite t2v model. Generate videos from text and images with flexible duration, ratios, and resolutions.

Seedance 1.0 Lite t2v is a video generation model from ByteDance's Seedance series, available through Anyfast API. Create videos from text prompts and reference images using a multimodal content format.

## Key capabilities

* **Text-to-Video** — Generate videos from text prompts
* **Flexible Duration** — Generate 2–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-0-lite-t2v-250428",
      "content": [
        {"type": "text", "text": "A cat walking through a field of 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-0-lite-t2v-250428",
          "content": [
              {"type": "text", "text": "A cat walking through a field of 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-0-lite-t2v-250428`                            |
| `content`      | array   | Yes      | Multimodal array: text (required) + image\_url (optional for i2v)        |
| `ratio`        | string  | No       | `16:9`, `4:3`, `1:1`, `3:4`, `9:16`, `21:9`, `adaptive`. Default: `16:9` |
| `resolution`   | string  | No       | `480p`, `720p`, `1080p`. Default: `720p`                                 |
| `duration`     | integer | No       | 2–12 seconds. Default: `5`                                               |
| `watermark`    | boolean | No       | Include watermark. Default: `false`                                      |
| `seed`         | integer | No       | Random seed for reproducibility                                          |
| `camera_fixed` | boolean | No       | Fix camera position. Default: `false`                                    |

<Card title="API Reference" icon="code" href="/api-reference/model-api/bytedance/doubao-seedance-1-0-lite-t2v-250428">
  View the interactive API playground for Seedance 1.0 Lite t2v.
</Card>

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