Experimental reasoning model with explicit thinking process. Shows step-by-step reasoning for complex problems.
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 150 | $0.15 |
| Output Tokens | 600 | $0.60 |
* 1 credit โ $0.001 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "gemini-2.0-flash-thinking",
"input": {
"model": "gemini-2.0-flash-thinking-exp",
"messages": [
{
"role": "user",
"content": "A train leaves station A at 9 AM traveling at 60 mph. Another train leaves station B (300 miles away) at 10 AM traveling toward A at 80 mph. When and where will they meet?"
}
]
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects |
max_tokens | integer | No | - | Maximum output tokens |
Solve with explicit reasoning
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"model": "gemini-2.0-flash-thinking",
"input": {
"model": "gemini-2.0-flash-thinking-exp",
"messages": [
{
"role": "user",
"content": "A train leaves station A at 9 AM traveling at 60 mph. Another train leaves station B (300 miles away) at 10 AM traveling toward A at 80 mph. When and where will they meet?"
}
]
}
}'POST /llm/openai/v1/chat/completions