Claude Sonnet 4.6

Model Information

Display Name: Claude Sonnet 4.6

API Model ID: anthropic/claude-sonnet-4.6

Category: Image To Text

Description: Claude Sonnet 4.6 is Anthropic's balanced model offering frontier-level performance at moderate cost. Excels at coding, complex reasoning, and multimodal tasks with a 200K context window and extended thinking capabilities. **Key Features:** - 200K token context window - Up to 16K output tokens - Vision: processes text and images natively - Native function/tool calling - Extended thinking mode - JSON mode for structured outputs - Prompt caching for efficiency **Capabilities:** - Advanced code generation and debugging - Complex reasoning and problem solving - Image understanding and analysis - Document summarization and extraction - Agentic workflows and tool use - Structured data generation - Multi-turn conversation **Best For:** - Production coding and software engineering - Complex reasoning at balanced cost - Multimodal applications (text + vision) - Enterprise workloads requiring quality and speed - API-driven automation **Technical Specs:** - Model ID: claude-sonnet-4-6 - Context Window: 200,000 tokens - Max Output: 16,384 tokens - Modalities: Text input/output, image input - API: Anthropic Messages API - Extended Thinking: Supported - Tool Use: Native function calling

Context Window: 200,000 tokens

Max Output: 16,384 tokens

How to Use This Model

To use Claude Sonnet 4.6 via the HInow.ai API, use the model ID: anthropic/claude-sonnet-4.6

API Request Example (Chat/Text)


POST https://api.hinow.ai/v1/chat/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "anthropic/claude-sonnet-4.6",
  "messages": [
    {"role": "user", "content": "Your message here"}
  ]
}
              

API Request Example (Image Generation)


POST https://api.hinow.ai/v1/images
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

{
  "model": "anthropic/claude-sonnet-4.6",
  "prompt": "Your image description here"
}
              

Pricing

  • input: $3.30
  • output: $16.50

Available Parameters

  • temperature: Controls randomness (0-1). Default: 1 (Options: 0, 0.3, 0.5, 0.7, 1.0)
  • top_p: Nucleus sampling (0-1). Default: 0.9 (Options: 0.1, 0.5, 0.7, 0.9, 0.95, 1.0)
  • max_tokens: Max tokens to generate (1-16384) (Options: 256, 512, 1024, 2048, 4096, 8192, 16384)

Quick Reference

To use this model, set: "model": "anthropic/claude-sonnet-4.6"

Featured: Yes

Documentation: https://hinow.ai/models/anthropic/claude-sonnet-4.6

API Endpoint: https://api.hinow.ai/v1

Back to Models

Claude Sonnet 4.6

Featured

anthropic/claude-sonnet-4.6

$3.30 / $16.50
per 1M tokens (in/out)

About

Claude Sonnet 4.6 is Anthropic's balanced model offering frontier-level performance at moderate cost. Excels at coding, complex reasoning, and multimodal tasks with a 200K context window and extended thinking capabilities.

Key Features:

  • 200K token context window
  • Up to 16K output tokens
  • Vision: processes text and images natively
  • Native function/tool calling
  • Extended thinking mode
  • JSON mode for structured outputs
  • Prompt caching for efficiency

Capabilities:

  • Advanced code generation and debugging
  • Complex reasoning and problem solving
  • Image understanding and analysis
  • Document summarization and extraction
  • Agentic workflows and tool use
  • Structured data generation
  • Multi-turn conversation

Best For:

  • Production coding and software engineering
  • Complex reasoning at balanced cost
  • Multimodal applications (text + vision)
  • Enterprise workloads requiring quality and speed
  • API-driven automation

Technical Specs:

  • Model ID: claude-sonnet-4-6
  • Context Window: 200,000 tokens
  • Max Output: 16,384 tokens
  • Modalities: Text input/output, image input
  • API: Anthropic Messages API
  • Extended Thinking: Supported
  • Tool Use: Native function calling

Capabilities

Image To TextText To Text
Context200K tokens
Max Output16K tokens

Parameters

temperature

Controls randomness (0-1). Default: 1

00.30.50.71.0
top_p

Nucleus sampling (0-1). Default: 0.9

0.10.50.70.90.951.0
max_tokens

Max tokens to generate (1-16384)

256512102420484096819216384

Code Examples

curl -X POST https://api.hinow.ai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $HINOW_API_KEY" \
  -d '{
    "model": "anthropic/claude-sonnet-4.6",
    "messages": [
      {
        "role": "user",
        "content": [
          {"type": "text", "text": "Describe this image"},
          {"type": "image_url", "image_url": {"url": "https://example.com/image.jpg"}}
        ]
      }
    ],
    "parameters": {
      "temperature": "0",
      "top_p": "0.1",
      "max_tokens": "256"
    }
  }'