Google's premium image generation model within the Gemini 3 Pro family. Generates high-quality images directly in chat with the highest fidelity among Gemini image models. Image output tokens are priced at 10x text output tokens.
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 2,000 | $2.00 |
| Output Tokens | 12,000 | $12.00 |
| ๐ผImage Output Tokens | 120,000 | $120.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-image-preview",
"messages": [
{
"role": "user",
"content": "Explain the principles of color theory and how they apply to digital design."
}
],
"max_tokens": 2000,
"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) |
top_p | float | No | 0.95 | Nucleus sampling parameter |
max_tokens | integer | No | - | Maximum output tokens |
stream | boolean | No | false | Enable Server-Sent Events streaming |
Standard text conversation using Pro capabilities
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-image-preview",
"messages": [
{
"role": "user",
"content": "Explain the principles of color theory and how they apply to digital design."
}
],
"max_tokens": 2000,
"temperature": 0.7
}'Generate a high-quality image through natural language
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-image-preview",
"messages": [
{
"role": "user",
"content": "Generate a photorealistic image of a futuristic city skyline at golden hour, with flying vehicles and vertical gardens on skyscrapers."
}
],
"max_tokens": 4096
}'POST /llm/gemini/v1beta/openai/chat/completions