Dola Seed 2.0 Mini
Provider list prices: no platform markup, pay-as-you-go. These are official list prices. Logged-in customers may see effective prices including workspace discounts on /console/pricing. Effective input at a 70% cache-hit rate:$0.044/M. Implicit prefix caching is on by default for Seed language models (1,024-token minimum, no storage fee); an explicit context-caching API is also available. Media models (image / ASR) are not cacheable.
Use Dola Seed 2.0 Mini in 30 seconds
OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="Dola-Seed-2.0-mini",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "Dola-Seed-2.0-mini",
messages: [{ role: "user", content: "Summarize this diff" }],
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "Dola-Seed-2.0-mini",
"messages": [{"role": "user", "content": "Hello"}]
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "Dola-Seed-2.0-mini",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("Dola-Seed-2.0-mini")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));About Dola Seed 2.0 Mini
Dola Seed 2.0 Mini is the smallest member of ByteDance's Dola Seed 2.0 family on BytePlus ModelArk, an omnimodal-understanding deep-thinking model tuned for shorter reasoning traces and higher token efficiency.
- Official release notes position it for low-latency, high-concurrency, cost-sensitive scenarios that emphasize fast responses.
- It carries a 256K context window with up to 128K output including chain-of-thought, and supports deep reasoning, multimodal understanding, function calling, structured output, and prefix or session caching.
- Synthorai presents it through an OpenAI-compatible chat completions API.
Specs & limits
| Max output (vendor spec) | 131,072 |
| Modalities | text + image + video + audio → text |
| Features | tools · structured_output · streaming · vision · reasoning · caching |
| Notable | Seed 2.0 series launched 2026-02-14; ModelArk id seed-2-0-mini (latest version 260428); 256K context, 128K max output incl. CoT; audio understanding in beta on the 260428 version; implicit + explicit context caching. |
| Prompt caching | automatic + explicit · min 1,024-token prefix |
FAQ
Is the Dola Seed 2.0 Mini API free to try?
Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. At $0.1/M input tokens, that credit alone covers roughly 1,250 requests of ~8K tokens against Dola Seed 2.0 Mini.
What is Dola Seed 2.0 Mini best at?
Shorter reasoning traces, higher token efficiency, plus built for low-latency, cost-sensitive scenarios and deep reasoning with prefix or session caching. See the About section for the full picture from the vendor's own release notes.
How much does Dola Seed 2.0 Mini cost?
Dola Seed 2.0 Mini costs $0.1 per million input tokens and $0.4 per million output tokens on Synthorai. That is the provider's list price, with no platform markup. Cached input tokens bill at $0.02/M.
Does Dola Seed 2.0 Mini support prompt caching?
Yes: automatic caching is on by default, with an explicit mode for guaranteed savings. Cached input tokens bill at $0.02/M vs $0.1/M uncached; prompts need a 1,024-token stable prefix to cache. Prompt caching guide →
How do I get access to Dola Seed 2.0 Mini?
Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="Dola-Seed-2.0-mini", and you're done. One API key covers every model on the gateway.