Dola-Seed 2.0 Pro API

Context
256K tokens
Input
$0.65 / 1M
Output
$3.9 / 1M

How to use Dola-Seed 2.0 Pro API

Install any OpenAI-compatible SDK, point it at api.aimlapi.com/v1, and set the model to bytedance/seed-2-0-pro.
import requests

r = requests.post(
    "https://api.aimlapi.com/v1/chat/completions",
    headers={"Authorization": "Bearer " + AIMLAPI_KEY},
    json={
      "model": "bytedance/seed-2-0-pro",
      "messages": [
        {
          "role": "user",
          "content": "Hello!"
        }
      ]
    },
)
print(r.json())
const r = await fetch("https://api.aimlapi.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.AIMLAPI_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    "model": "bytedance/seed-2-0-pro",
    "messages": [
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }),
});
console.log(await r.json());
curl -X POST https://api.aimlapi.com/v1/chat/completions \
  -H "Authorization: Bearer $AIMLAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"bytedance/seed-2-0-pro","messages":[{"role":"user","content":"Hello!"}]}'

OpenAI-compatible — swap the base URL and it works with your existing SDK.

Dola-Seed 2.0 Pro API Pricing

TypePrice
Input
$0.65 / 1M tokens
Output
$3.9 / 1M tokens

Dola-Seed 2.0 Pro Benchmarks

BenchmarkScoreWhat it measures
LiveCodeBench
87.8%
Contamination-free competitive programming problems
SWE-bench Verified
76.5%
Resolving verified real GitHub issues
GPQA Diamond
88.9%
Google-proof graduate science questions (hardest subset)
AIME 2025
98.3%
Competition mathematics (AIME), 2025

Start building with Dola-Seed 2.0 Pro

Get API Key
1000+ models, one API.