What you get
Built for developers who ship.
Pricing
The difference is obvious.
USD per million tokens for the four billed dimensions. Real numbers from the live provider marketplace.
* outgap price is the lowest buyer price across active providers for each dimension. Official price is the model vendor's list price. Settlement in USDC ≈ USD.
Requests routed
0
Active providers
0
Saved vs official this month
$0
python
import anthropic
# 把 <route-alias> 换成分配给你的 route(例如 ccmax-1)
client = anthropic.Anthropic(
api_key="rk_...",
base_url="https://outgap.ai",
)
msg = client.messages.create(
model="<route-alias>/claude-opus-4-7",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello"}],
)Drop-in replacement
Change the base URL. That's it.
No wrappers, no gateways, no new concepts. If your code works with the official Anthropic or OpenAI SDK, it works with outgap. Swap two strings and ship.
- Streaming, tool use, vision — fully supported
- Same request/response shape, bit-for-bit
- Works with SDKs, CLIs, agents, langchain, vercel ai