Google's most capable model with state-of-the-art reasoning and 1M token context. Excels at complex coding, math, and multi-document analysis.
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 1,250 | $1.25 |
| Output Tokens | 10,000 | $10.00 |
* 1 credit โ $0.001 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-2.5-pro",
"messages": [
{
"role": "user",
"content": "Analyze this entire codebase for architectural issues, security vulnerabilities, and performance bottlenecks: [code files]"
}
],
"max_tokens": 8000
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects |
temperature | float | No | 1.0 | Sampling temperature (0-2) |
max_tokens | integer | No | - | Maximum output tokens |
Analyze entire codebases
curl -X POST "https://api.core.today/llm/gemini/v1beta/openai/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "gemini-2.5-pro",
"messages": [
{
"role": "user",
"content": "Analyze this entire codebase for architectural issues, security vulnerabilities, and performance bottlenecks: [code files]"
}
],
"max_tokens": 8000
}'POST /llm/gemini/v1beta/openai/chat/completions