OneAPIKey
← All models
Anthropic

Claude Opus 4.7

Anthropic's most capable model.

chatreasoningagentslong-context
Input price
$18.00
per 1M tokens (with markup)
Output price
$90.00
per 1M tokens (with markup)
Context window
1,000,000
tokens max input
About Claude Opus 4.7

Claude Opus is Anthropic's flagship — top-tier reasoning, agentic behavior, 1M context window, native tool use.

Capabilities
Streaming
Tool calling / function calls
Vision input
JSON mode
Use it through OneAPIKey
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: process.env.ONEAPIKEY_API_KEY,
  baseURL: "https://oneapikey.app/v1",
});

const res = await client.chat.completions.create({
  model: "claude-opus-4-7",
  messages: [{ role: "user", content: "Hello!" }],
});