Anthropic's most advanced model, building on Opus 4.7 with improvements across benchmarks in coding, agentic skills, reasoning, and knowledge work. Features enhanced honesty, better tool use efficiency, dynamic workflows support, and improved alignment.
300K tokens
1
available
Cheapest
Anthropic
$90.00/1M tokens
Fastest
Anthropic
582ms TTFT
Anthropic
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $15.00Out: $75.00 | 50 RPM / 80K TPM | us-east-1eu-west-1 | Healthy | 582ms |
Use this model via Anthropic with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.anthropic.com/v1",
apiKey: process.env.ANTHROPIC_API_KEY,
});
const response = await client.chat.completions.create({
model: "claude-opus-4-8-20260528",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Anthropic API • OpenAI-compatible SDK