Models

Claude Opus 4 8

Anthropic model configured for vision understanding, deep reasoning, text generation workloads.

Overview

Claude Opus 4 8 is a Anthropic model configured in Yolo Router. It is listed for vision understanding, deep reasoning, text generation workloads. Use the model ID claude-opus-4-8 when calling compatible APIs.

Key Specifications

ParameterValue
ProviderAnthropic
Model IDclaude-opus-4-8
Input ModalitiesText, Image
Output ModalitiesText
Pricing TypeUsage-based

Capabilities

  • Vision Understanding - Accepts visual context for image-aware tasks
  • Deep Reasoning - Suitable for multi-step analysis and planning
  • Text Generation - Generates answers, drafts, summaries, and rewrites

Pricing

TypePrice
Input$1.5 / 1M tokens
Output$7.5 / 1M tokens
Cache Read$0.15 / 1M tokens
Cache Write$1.875 / 1M tokens

Usage Example

from openai import OpenAI

client = OpenAI(
    api_key="sk-...",
    base_url="https://api.yolorouter.com/v1",
)

response = client.responses.create(
    model="claude-opus-4-8",
    input="Summarize this content.",
)

print(response.output_text)

Best Practices

  • Pass the model ID exactly as shown in the documentation.

  • Match the model capability tags to the text, image, audio, or video workload.

  • When cache prices are configured, keep stable prompt prefixes to improve cache reuse.

On this page