ByteDance

Seedream 3.0

Image
Not available
Generate Now

Bytedance Seedream 3.0 image generation.

Type
Text to Image
Billed
per img
Provider
Bytedance

Pricing

/ img
Price$3.00 / img

Supported parameters

modelSettings
  • Promptprompt
  • Sizeimage_size
  • Guidance Scaleguidance_scale
  • Seedseed

Code examples

POST /v1/generations

Generations are async — the request returns immediately with an id; poll for the result.

python
import requests

response = requests.post(
    "https://api.modelstack.cc/v1/generations",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
    json={
        "type": "TEXT_TO_IMAGE",
        "prompt": "A serene mountain landscape at sunset",
        "model": "bytedance/seedream"
    },
)
generation_id = response.json()["data"]["id"]

# Poll for the result
result = requests.get(
    f"https://api.modelstack.cc/v1/generations/{generation_id}",
    headers={"Authorization": "Bearer sk_YOUR_API_KEY"},
).json()
print(result["data"]["status"])

Related models

Frequently asked questions

How is Seedream 3.0 billed on ModelStack?expand_more
Seedream 3.0 (Text to Image) is billed at a flat, prepaid rate of $3.00 / img — generation pricing has no tier-based discounts. Final request costs are available in the console.
Which parameters does Seedream 3.0 support?expand_more
Seedream 3.0 supports: Prompt, Size, Guidance Scale, Seed.
How can I generate with Seedream 3.0?expand_more
Use the Generate composer in your dashboard, or call the API directly with model `bytedance/seedream` and type `TEXT_TO_IMAGE` — see the code example above.