All modelsGet API key
Seed 2.1 Pro
AvailableByteDance · Text
Overview
AI model available through the unified EasyToken API. Access it through EasyToken's unified API with centralized billing and usage observability.
Capabilities
Chat
API example
Pythonfrom openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.easytoken.site/v1"
)
response = client.chat.completions.create(
model="seed-2.1-pro",
messages=[{"role": "user", "content": "Hello"}]
)