Skip to main content
AIsa routes ByteDance Seed and Seedream models through BytePlus, ByteDance’s official international enterprise platform. Use one AIsa API key for Seed text/vision/video/coding models and Seedream image models. All current ByteDance entries in the AIsa catalog use POST /v1/chat/completions. Seedream models are billed per request.

Supported ByteDance models

Model IDContextCapabilitiesPriceBest for
seed-1-6-250915262,144Text, Video, Vision0.2250in/0.2250 in / 0.9000 out per 1MStable general Seed route
seed-1-6-flash-250715262,144Text, Video, Vision0.0675in/0.0675 in / 0.2700 out per 1MFast, low-cost throughput
seed-1-8-251228262,144Coding, Text, Video, Vision0.2250in/0.2250 in / 1.8000 out per 1MStronger agentic and coding tasks
seed-2-0-mini-260215262,144Coding, Text, Video, Vision0.1000in/0.1000 in / 0.4000 out per 1MLow-cost Seed 2.0 route
seed-2-0-lite-260228262,144Coding, Text, Video, Vision0.2500in/0.2500 in / 2.0000 out per 1MBalanced Seed 2.0 route
seed-2-0-pro-260328262,144Coding, Text, Video, Vision0.5000in/0.5000 in / 3.0000 out per 1MStrongest Seed 2.0 route
seedream-4-5-251128N/AImage, Vision$0.036/requestImage generation and editing
seedream-5-0-260128262,144Image, Vision$0.035/requestNewer Seedream image route
The date suffix in each model string is a release/version stamp in YYMMDD format, useful when pinning a production route.

Quickstart

from openai import OpenAI

client = OpenAI(api_key="YOUR_AISA_API_KEY", base_url="https://api.aisa.one/v1")

response = client.chat.completions.create(
    model="seed-2-0-pro-260328",
    messages=[{"role": "user", "content": "Analyze this product requirements document and identify implementation risks."}]
)
print(response.choices[0].message.content)

Image route example

response = client.chat.completions.create(
    model="seedream-5-0-260128",
    messages=[
        {"role": "user", "content": "Create a clean product image of a glass water bottle on a white marble surface."}
    ]
)

Common choices

NeedUse
Lowest-cost Seed routeseed-1-6-flash-250715 or seed-2-0-mini-260215
Strongest Seed text/coding routeseed-2-0-pro-260328
Stable Seed 1.x routeseed-1-6-250915
Image generation/editingseedream-5-0-260128 or seedream-4-5-251128

Data privacy

ByteDance Seed and Seedream requests are routed through BytePlus enterprise infrastructure. For compliance and data residency requirements, contact us.

Next