Gemini 3 Pro is the first model in the new Gemini 3 series. It is best for complex tasks that require broad world knowledge and advanced reasoning across modalities. Gemini 3 Pro uses dynamic thinking by default to reason through prompts, and features a 1 million-token input context window with 64k output tokens.
Context Window
1000k tokens
Max Output
64k tokens
Pricing (Input / Output)
$2 / $12 per 1M
Latency
0.6s
Throughput
90 tps
Architecture
Gemini 3
Parameters
Unknown
Modality
multimodal
Knowledge Cutoff
Jan 2025
License
Proprietary
Training Data
Unknown
Input Modalities
Output Modalities
gpqa
91.9
mmmu pro
81
aime 2025
95
arc agi v2
31.1
livecodebench pro
2439
curl -X POST https://api.neuralhub.xyz/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer NEURALHUB_API_KEY" \
-d '{
"model": "google/gemini-3-pro-preview",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "Explain quantum entanglement to a 5 year old." }
],
"temperature": 0.7,
"max_tokens": 500,
"top_p": 0.9
}'The API returns an OpenAI-compatible response. Example:
{
"id": "chatcmpl-<uuid>",
"object": "chat.completion",
"created": 1765391188,
"model": "google/gemini-3-pro-preview",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "The answer to life, the universe, and everything is famously 42..."
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 26,
"completion_tokens": 169,
"total_tokens": 195
}
}