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

# Introduction

> Production REST API for SeedDance video and Seedream image models.

SeedanceAPI gives you programmatic access to **SeedDance** (video) and **Seedream** (image) models through a single REST interface.

## What you get

* **Unified models** — SeedDance 2.5, 2.0, 1.x and Seedream 5.0, 4.x with consistent request shapes
* **Simple pricing** — video per second, images per generation; prepaid USD balance
* **API keys** — create `ak_...` keys in the dashboard
* **Async video jobs** — submit, poll, or receive webhooks when complete
* **Sync images** — get results in the same response
* **MCP server** — connect Cursor, Claude Desktop, and other agents at `https://api.seedanceapi.us/mcp`

## Base URLs

| Service | URL                           |
| ------- | ----------------------------- |
| API     | `https://api.seedanceapi.us`  |
| Website | `https://seedanceapi.us`      |
| Docs    | `https://seedanceapi.us/docs` |

## Quick example

```bash theme={null}
curl https://api.seedanceapi.us/v1/models \
  -H "Authorization: Bearer ak_YOUR_API_KEY"
```

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/docs/quickstart">
    Create a key, add balance, and make your first call.
  </Card>

  <Card title="Authentication" icon="key" href="/docs/authentication">
    API keys and Bearer token auth.
  </Card>

  <Card title="Video generation" icon="video" href="/docs/videos">
    Async `/v1/videos` jobs with polling and webhooks.
  </Card>

  <Card title="For agents" icon="robot" href="/docs/agents">
    MCP config and copy-paste agent starters.
  </Card>
</CardGroup>
