Skip to main content
Every Claude model — Opus, Sonnet, and Haiku across the 3.5, 4, 4.5, 4.6, 4.7, and 4.8 generations — is routable through Verlon with your existing Anthropic SDK unchanged. Just point baseURL at Verlon and swap the API key.

Chat models

This table is auto-generated from the Verlon model registry on every sync — see the live registry for pricing, benchmarks, and deprecation dates.

Other modalities

No non-chat models.

Quickstart

First time? Create a gate and grab an API key — the examples below need a GATE_ID and VERLON_API_KEY.
The fastest path — Verlon SDK, one call:
Any chat model from the table above works — swap claude-sonnet-4-6 for claude-opus-4-8, claude-haiku-4-5-20251001, or any other ID.

SDK compatibility

Verlon exposes an Anthropic-compatible endpoint. The official Anthropic SDK works unchanged — swap two lines and every model in the table above becomes callable through the SDK you already know.

Configuration — just two lines

Specifying your gate

Verlon supports three ways to point a request at a gate:

Streaming

Identical behavior to the Anthropic SDK — stream: true returns an async iterable of MessageStreamEvent objects.

Language coverage

What’s supported

Full support for stream: true, identical semantics to Anthropic’s SDK.
Fully supported. Verlon translates across providers if your gate routes to a non-Claude model.
Image inputs in messages work with any vision-capable model.
System prompts, user, assistant, and tool_result blocks all pass through.
temperature, max_tokens, top_p, top_k, stop_sequences, and the rest — all passed through.
Standard response.usage with token counts, plus Verlon’s cost field with per-call dollar amount.

Migrating an existing Anthropic app

1

Update client initialization

Swap baseURL + apiKey. Two lines.
2

Add a gate reference

Pass gateId (or set the default header). max_tokens, messages, and everything else stay the same.
3

Test in development

Verify requests appear in the Verlon dashboard and cost tracking works.
4

Deploy

Ship. If anything breaks, revert the two-line diff — takes 30 seconds.

How it works

  1. You send an Anthropic-format request to https://api.verlon.ai/v1/messages
  2. Verlon receives — validates the gate, applies routing rules
  3. Verlon routes to whichever model your gate points at (Claude, GPT, Gemini, Mistral, or anything else in the registry)
  4. The provider responds in its native format
  5. Verlon normalizes back to Anthropic format
  6. You receive a standard Anthropic response with an added cost field
Your code doesn’t know the difference.

Errors

Errors come back Anthropic-shaped — { "type": "error", "error": { "type", "message" } } — so the Anthropic SDK’s error classes work unchanged.

FAQ

No. Change baseURL + apiKey in the client. The messages.create calls stay identical.
Yes. Revert baseURL + apiKey to Anthropic values and you’re back on their API.
Yes — that’s the point. Configure your gate to route to any model in the registry and your Anthropic SDK code stays the same.
No. This whole guide uses only the Anthropic SDK.

Full non-chat model list

This provider is chat-only — see the table above.