Fast, cost-effective model for everyday tasks. Great balance of speed, intelligence, and cost for high-volume applications.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 1,858 | $1.24 |
| Output Tokens | 9,290 | $6.19 |
| Cached Tokens | 185.8 | $0.12 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-haiku-4-5",
"max_tokens": 500,
"messages": [
{
"role": "user",
"content": "What are the main benefits of renewable energy?"
}
]
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects |
max_tokens | integer | Yes | - | Maximum tokens in response |
temperature | float | No | 1.0 | Sampling temperature (0-1) |
Fast conversational response
curl -X POST "https://api.core.today/llm/anthropic/v1/messages" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "claude-haiku-4-5",
"max_tokens": 500,
"messages": [
{
"role": "user",
"content": "What are the main benefits of renewable energy?"
}
]
}'POST /llm/anthropic/v1/messages