← Back to model catalog
ClaudeLive

Claude 3.7 Sonnet

Provider
Proprietary models
Context
200,000 tokens
Pricing
$3.00 / 1M input · $15.00 / 1M output
APAC regions
Singapore, Sydney, Tokyo, New Zealand, Seoul, Taiwan, Mumbai
Residency
in-region
Task
Chat
APAC performance

Latency profile

Performance data will be available once this route is live.

Pricing

Input: $3.00 per 1M tokens

Output: $15.00 per 1M tokens

Billing: Per-token, charged against wallet balance

View full pricing and calculator →
Capabilities

Claude 3.7 Sonnet available via Amazon Bedrock.

Best for: General-purpose inference

Quickstart code snippets
Python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.brightnode.cloud/v1",
    api_key="YOUR_BRIGHTNODE_API_KEY",
)

response = client.chat.completions.create(
    model="anthropic/claude-3-7-sonnet",
    messages=[{"role": "user", "content": "Hello from APAC"}],
)
Node
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.brightnode.cloud/v1",
  apiKey: process.env.BRIGHTNODE_API_KEY,
});

const response = await client.chat.completions.create({
  model: "anthropic/claude-3-7-sonnet",
  messages: [{ role: "user", content: "Hello from APAC" }],
});
Other models on Brightnode