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

# SeeDream 5.0 Lite

> Lightweight image generation and editing with up to 14 reference images and 2K/3K resolution. See parameters, pricing, and API examples.

Generate images using ByteDance SeeDream 5.0 Lite. Supports text-to-image and image editing with up to 14 reference images and resolution tiers up to 3K.

## Model

```
bytedance/seedream-5.0-lite
```

## Parameters

| Parameter               | Type      | Required | Default | Description                                                                                                                                                                                                       |
| ----------------------- | --------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `prompt`                | string    | **Yes**  | —       | Text prompt describing the desired image (max 6000 chars). Recommended: ≤ 300 Chinese characters or ≤ 600 English words                                                                                           |
| `image_urls`            | string\[] | No       | `null`  | Reference image URLs for image editing (max 14). Omit for text-to-image. Max 10 MB each; max 60,000,000 pixels; min side > 14 px; aspect ratio 1/16–16. Formats: jpeg, jpg, png, webp, bmp, tiff, gif, heic, heif |
| `resolution`            | string    | No       | `"3K"`  | `2K`, `3K` (case-insensitive)                                                                                                                                                                                     |
| `output_format`         | string    | No       | `"png"` | `jpeg`, `jpg`, `png`                                                                                                                                                                                              |
| `max_sequential_images` | integer   | No       | `1`     | Omit or set to `1` for a single image. Set to 2–15 for a sequential set (billed per image). When sequential: reference image count + `max_sequential_images` must not exceed 15                                   |
| `web_search`            | boolean   | No       | `true`  | When enabled, the model may search the web for up-to-date facts when the prompt needs them. Disable for faster, fully offline generation                                                                          |
| `nsfw_check`            | boolean   | No       | `true`  | Check uploaded media inputs for NSFW content                                                                                                                                                                      |

## Example - Text-to-Image

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "bytedance/seedream-5.0-lite",
    "input": {
      "prompt": "A cyberpunk city at sunset, neon lights reflecting on wet streets",
      "resolution": "3K"
    }
  }'
```

## Example - Image-to-Image

```bash theme={null}
curl -X POST https://api.unifically.com/v1/tasks \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "bytedance/seedream-5.0-lite",
    "input": {
      "prompt": "Place the animal inside the vintage car",
      "image_urls": [
        "https://example.com/animal.jpg",
        "https://example.com/car.jpg"
      ],
      "resolution": "2K"
    }
  }'
```

<Note>
  `max_sequential_images` is the maximum number of sequential images the model may generate—not a fixed batch size. The model chooses how many to produce (from 1 up to that limit). Omit the parameter or set `max_sequential_images` to `1` for a single image. Sequential images are billed per image.
</Note>

## Response

```json theme={null}
{
  "code": 200,
  "success": true,
  "data": {
    "task_id": "9d489f02-316f-4386-8188-dc19540d56f5",
    "status": "completed",
    "output": {
      "image_urls": [
        "https://files.unifically.com/image/92116e95-8dd4-4cbb-b53f-ee643e1045d8.jpg"
      ]
    }
  }
}
```

The number of URLs in `image_urls` reflects how many sequential images the model generated (up to your `max_sequential_images` ceiling).

<Note>
  **Volume discounts** are available for almost all models. Reach out at [contact@unifically.com](mailto:contact@unifically.com) to discuss custom pricing.
</Note>
