# Seedream v5.0 Lite Sequential — Atlas Cloud API

> ByteDance next-generation image model with batch generation support. Generate up to 15 related images in a single request.

This is the machine-readable API reference for **Seedream v5.0 Lite Sequential** on Atlas Cloud,
a unified API platform for 400+ AI models across text, image, video, audio and 3D.

- **Model ID**: `bytedance/seedream-v5.0-lite/sequential`
- **Built by**: ByteDance
- **Modality**: Image
- **Model page**: https://www.atlascloud.ai/models/bytedance/seedream-v5.0-lite/sequential
- **API key**: https://www.atlascloud.ai/console/api-keys
- **Docs**: https://www.atlascloud.ai/docs

## Pricing on Atlas Cloud

- $0.032 per image
- Pay-as-you-go. No minimum spend, no subscription required.

> **These are the authoritative Atlas Cloud rates for this model.** Any price that
> appears in the vendor description further down refers to a different platform or
> a different model variant and does not apply here.

## Use this model from an AI agent

Atlas Cloud ships three first-party integration surfaces. All three authenticate
with the same API key via the `ATLASCLOUD_API_KEY` environment variable.

### MCP server

The official MCP server (`atlascloud-mcp`) exposes this model to any
MCP-compatible host — Claude Code, OpenAI Codex, Cursor, Gemini CLI, Goose,
Claude Desktop. One-line install:

```bash
# Claude Code
claude mcp add atlascloud -- npx -y atlascloud-mcp

# OpenAI Codex CLI
codex mcp add atlascloud -- npx -y atlascloud-mcp

# Gemini CLI
gemini mcp add atlascloud -- npx -y atlascloud-mcp

export ATLASCLOUD_API_KEY="your-api-key"
```

Then ask in plain English; the agent calls `atlas_generate_image` with `model: "bytedance/seedream-v5.0-lite/sequential"`.
The server fetches each model's schema and validates parameters before submitting,
so invalid requests fail fast without spending credits.

MCP docs: https://www.atlascloud.ai/docs/mcp-server

### Agent Skills

`atlas-cloud-skills` is a portable skill package (API reference, code templates in
Python / Node.js / cURL, model IDs with pricing) for Claude Code, Cursor, Codex and
12+ other agents:

```bash
npx skills add AtlasCloudAI/atlas-cloud-skills
export ATLASCLOUD_API_KEY="your-api-key"
```

Skills docs: https://www.atlascloud.ai/docs/skills

### CLI

The `atlas` binary runs Atlas Cloud from a terminal or CI script. Async media jobs
are polled and downloaded automatically (use `--no-download` when a script only
needs the output URLs):

```bash
# Install (Homebrew, npm, or shell installer)
brew install AtlasCloudAI/tap/atlascloud
# npm install -g atlascloud-cli
# curl -fsSL https://raw.githubusercontent.com/AtlasCloudAI/cli/main/install.sh | sh

atlas auth login
atlas generate image bytedance/seedream-v5.0-lite/sequential -p "Your prompt here"
```

CLI docs: https://www.atlascloud.ai/docs/cli

## HTTP API reference

- **Submit endpoint (POST)**: `https://api.atlascloud.ai/api/v1/model/generateImage` — start an async generation; returns a `prediction_id`
- **Poll endpoint (GET)**: `https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}` — poll this until the prediction finishes
- **Model ID**: `bytedance/seedream-v5.0-lite/sequential`


## API Information

This model can be used via our HTTP API or more conveniently via our client libraries.
See the input and output schema below, as well as the usage examples.


### Input Schema

The API accepts the following input parameters:

- **`model`** (`string`, _required_):
  model name
  - Default: `"bytedance/seedream-v5.0-lite/sequential"`

- **`prompt`** (`string`, _required_):
  The positive prompt for the generation. Recommended length: under 600 English words.

- **`size`** (`string`, _optional_):
  Output image size in 'WIDTH*HEIGHT' pixels. 16 preset resolutions at 2K and 3K tiers. Total pixel range: [3,686,400, 10,404,496]. Aspect ratio range: [1/16, 16].
  - Default: `"2048*2048"`
  - Options: "2048*2048", "2304*1728", "1728*2304", "2848*1600", "1600*2848", "2496*1664", "1664*2496", "3136*1344", "3072*3072", "3456*2592", "2592*3456", "4096*2304", "2304*4096", "2496*3744", "3744*2496", "4704*2016"

- **`max_images`** (`integer`, _optional_):
  The maximum number of images to generate (1-15). The total of input reference images plus generated images must not exceed 15.
  - Default: `1`
  - Min: 1
  - Max: 15

- **`output_format`** (`string`, _optional_):
  Output image file format. Seedream v5.0 Lite supports both JPEG and PNG output.
  - Default: `"jpeg"`
  - Options: "jpeg", "png"

- **`enable_base64_output`** (`boolean`, _optional_):
  If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.
  - Default: `false`



**Required Parameters Example**:

```json
{
  "model": "bytedance/seedream-v5.0-lite/sequential",
  "prompt": ""
}
```


**Full Example**:

```json
{
  "model": "bytedance/seedream-v5.0-lite/sequential",
  "prompt": "",
  "size": "2048*2048",
  "max_images": 1,
  "output_format": "jpeg",
  "enable_base64_output": false
}
```


### Output Schema

The API returns the following output format:


- **`created_at`** (`string`, _optional_):
  ISO timestamp of when the request was created (e.g., "2023-04-01T12:34:56.789Z").

- **`id`** (`string`, _optional_):
  Unique identifier for the prediction, the ID of the prediction to get.

- **`model`** (`string`, _optional_):
  Model ID used for the prediction.

- **`outputs`** (`array[string]`, _optional_):
  Array of URLs to the generated content (empty when status is not completed).

- **`status`** (`string`, _optional_):
  Status of the task: created, processing, completed, or failed.

- **`urls`** (`object`, _optional_):
  Object containing related API endpoints.



**Example Response**:

```json
{
  "created_at": "",
  "id": "",
  "model": "",
  "outputs": [
    ""
  ],
  "status": "",
  "urls": {}
}
```


## Usage Examples

### cURL

```bash
# Step 1: Start generation (async)
curl -X POST "https://api.atlascloud.ai/api/v1/model/generateImage" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "bytedance/seedream-v5.0-lite/sequential",
  "prompt": "",
  "size": "2048*2048",
  "max_images": 1,
  "output_format": "jpeg",
  "enable_base64_output": false
}'

# Response will contain: {"code": 200, "data": {"id": "prediction_id", "status": "processing"}}

# Step 2: Poll for result (replace {prediction_id} with the id returned above)
curl -X GET "https://api.atlascloud.ai/api/v1/model/prediction/{prediction_id}" \
  -H "Authorization: Bearer $ATLASCLOUD_API_KEY"

# Keep polling until status is "completed", "succeeded" or "failed"
# When completed, outputs will contain the generated content URL(s)
```

## Additional Resources

### Documentation

- [Model Playground](https://www.atlascloud.ai/models/bytedance/seedream-v5.0-lite/sequential)

## About this model

_Vendor-supplied description. Any pricing or endpoint mentioned below refers to_
_other platforms — use the Atlas Cloud values above._

#### 1. Introduction

**Seedream 5.0 Lite** is an advanced multimodal image generation model developed by ByteDance, released in February 2026. Designed to enable intelligent visual content creation, it integrates deep reasoning and up-to-date contextual awareness to produce high-resolution, semantically accurate images optimized for diverse practical workflows. Seedream 5.0 Lite represents a significant progression in AI-powered image generation through its incorporation of Chain of Thought (CoT) mechanisms and real-time web search capabilities.

This model’s significance lies in its capacity to perform complex multi-step visual reasoning and spatial logic, enhancing adherence to detailed prompts beyond typical static-image generation models. By coupling real-time external knowledge retrieval with sophisticated reasoning pipelines, Seedream 5.0 Lite delivers contextually relevant and conceptually rich images. These innovations position the model at the forefront of AI visual content frameworks targeting both creative and commercial use cases ([ByteDance Seed](https://seed.bytedance.com/en/seedream5_0_lite); [AIBase News](https://news.aibase.com/news/25521)).

---

#### 2. Key Features & Innovations

- **Chain of Thought Visual Reasoning**: Implements multi-step inference processes to interpret and synthesize visual elements, enabling complex spatial relationships and logical consistency across generated images. This CoT mechanism improves prompt fidelity and nuanced image understanding.

- **Real-time Web Search Integration**: Incorporates live data retrieval from web sources at generation time, allowing images to reflect current trends, events, and up-to-date factual information. This dynamic context infusion distinguishes Seedream 5.0 Lite from models relying exclusively on static training corpora.

_(Description truncated. Full text on the model page.)_

---

Atlas Cloud — one API for 400+ AI models. Model page: https://www.atlascloud.ai/models/bytedance/seedream-v5.0-lite/sequential · Docs: https://www.atlascloud.ai/docs
