1RPC.AI logo
39+ Models
Results for: “Claude Haiku 4.5
Claude Haiku 4.5 logo
Claude Haiku 4.5
Claude Haiku 4.5 is Anthropic's small model that offers Claude Sonnet 4-level intelligence at one-third the cost and over twice the speed. It is ideal for applications requiring low-latency, high-efficiency AI—such as chat assistants, real-time support agents, pair programming, and large-scale inference. Despite its compact size, Haiku 4.5 achieves state-of-the-art coding performanceon key real-world computer-use benchmarks like SWE-bench Verified.
200K Tokens
Python
Typescript
Shell
Loading...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import requests
import json

response = requests.post(
    url="https://1rpc.ai/v1/chat/completions",
    headers={
        "Authorization": "Bearer <1RPC_AI_API_KEY>",
        "Content-type": "application/json",
    },
    data=json.dumps ({
        "model": "claude-haiku-4-5-20251001",
        "max_tokens": 1024,
        "messages": [
            {
                "role": "user",
                "content": "What is the meaning of life?"
            }
        ]
    })
)