ModelsAnthropic
Claude Balanced
LiveClaude Sonnet 4.5 by Anthropic. Writing, analysis, everyday coding.
Read the API docsAvailable through the API with a Holder or Builder key.
Speed
3 of 4
Fast
Context window
1M tokens
How much text fits in one request
Who can use it
Holder and Builder
Hold 100K tokens, or top up credits
Input, per 1M tokens
$3.00
What the provider charges. Explorer and Holder pay nothing.
Output, per 1M tokens
$15
Builder pays this + 15% from prepaid credits.
Community ranking
Not ranked yet
Rankings appear after the first community votes.
Call it from your code
Use the model id claude-balanced with any OpenAI SDK. Streaming, tools and JSON mode pass straight through.
import os
from openai import OpenAI
client = OpenAI(base_url="https://api.dualyne.com/v1", api_key=os.environ["DUALYNE_KEY"])
reply = client.chat.completions.create(
model="claude-balanced",
messages=[{"role": "user", "content": "Hello"}],
)