# Seedream 5 Lite > Seedream 5.0 lite: image generation with built-in reasoning, example-based editing, and deep domain knowledge. Supports multi-reference (up to 14 images) and sequential batch generation. - **Provider**: replicate - **Model ID**: bytedance/seedream-5-lite - **Category**: image_generation - **Credits**: 82 per request - **Pricing Type**: input_based ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `aspect_ratio` (string, optional): Image aspect ratio. Use 'match_input_image' to automatically match the input image's aspect ratio. (Default: `match_input_image`; Options: `match_input_image`, `1:1`, `4:3`, `3:4`, `16:9`, `9:16`, `3:2`, `2:3`, `21:9`) - `prompt` (string, **required**): Text prompt for image generation - `size` (string, optional): Image resolution: 2K (2048px) or 3K (3072px). (Default: `2K`; Options: `2K`, `3K`) - `image_input` (array, optional): Input image(s) for image-to-image generation. List of 1-14 images for single or multi-reference generation. (Default: `[]`) - `max_images` (integer, optional): Maximum number of images to generate when sequential_image_generation='auto'. Range: 1-15. Total images (input + generated) cannot exceed 15. (Default: `1`; Range: min: 1, max: 15) - `sequential_image_generation` (string, optional): Group image generation mode. 'disabled' generates a single image. 'auto' lets the model decide whether to generate multiple related images (e.g., story scenes, character variations). (Default: `disabled`; Options: `disabled`, `auto`) - `output_format` (string, optional): Output image format. (Default: `png`; Options: `png`, `jpeg`) ## Example Request ```json { "model": "bytedance/seedream-5-lite", "input": { "size": "2K", "prompt": "A Renaissance-style oil painting of a modern-day farmer's market. A woman in a hoodie and jeans examines heirloom tomatoes under a striped canvas awning, lit like a Vermeer interior. The scene has the warm, golden light of a Dutch Golden Age painting but every detail is unmistakably contemporary.", "aspect_ratio": "16:9" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type url ## Tags bytedance, seedream, image-generation, text-to-image, image-editing, multi-reference, sequential-generation, reasoning, text-rendering ## Documentation https://replicate.com/bytedance/seedream-5-lite