Google's most powerful Gemini model in preview. Features breakthrough reasoning, coding, and multimodal capabilities with the largest context window.
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 4,000 | $4.00 |
| Output Tokens | 24,000 | $24.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-3-pro-preview",
"messages": [
{
"role": "user",
"content": "Analyze the architectural differences between transformer and state-space models, and discuss their implications for future AI system design."
}
],
"max_tokens": 4096,
"temperature": 0.7
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
messages | array | Yes | - | Array of message objects (OpenAI format) |
temperature | float | No | 1 | Sampling temperature (0-2) |
max_tokens | integer | No | - | Maximum output tokens |
Leverage Gemini 3 Pro for deep analysis
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-3-pro-preview",
"messages": [
{
"role": "user",
"content": "Analyze the architectural differences between transformer and state-space models, and discuss their implications for future AI system design."
}
],
"max_tokens": 4096,
"temperature": 0.7
}'POST /llm/gemini/v1beta/openai/chat/completions