← All Models
Gemini 3.1 Pro
Google's most capable model. Multimodal analysis, image generation, and broad reasoning with 1M+ token context.
Web Search
Code Execution
Specifications
| Provider | |
| Category | Text |
| Context window | 1.0M tokens |
Pricing (Starter tier)
260.00 credits / 1M input tokens
1,560.00 credits / 1M output tokens
Higher tiers get volume discounts. See tiers
Quick Start
curl -X POST https://query.genx.sh/api/v1/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.1-pro",
"params": {
"prompt": "Describe what you see in this image",
"image_url": "https://example.com/photo.jpg"
}
}'
Example Request Body
// POST /api/v1/generate
{
"model": "gemini-3.1-pro",
"params": {
"prompt": "Describe what you see in this image",
"image_url": "https://example.com/photo.jpg"
}
}