Skip to main content
Core.Today
|
GoogleMediumUltra

Gemini 3 Pro Image Preview

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.

500 credits
per request
Premium image generation quality
65,536 token context window
32,768 max output tokens
Input modalities: image + text
Output modalities: image + text
10x pricing for image vs text output tokens
Structured outputs, thinking, search grounding, Batch API

Run it right now

Test this model instantly in the Console Playground โ€” no code required

Sign in to try

Use with AI Assistant

Copy usage instructions for Claude, ChatGPT, or other AI

llms.txt

Model Specifications

Context Window
66K
tokens
Max Output
33K
tokens
Training Cutoff
January 2025
Compatible SDK
OpenAI, Google AI

Capabilities

Vision
Function Calling
Streaming
JSON Mode
System Prompt
Image Generation

Token Pricing (per 1M tokens)

Token TypeCreditsUSD Equivalent
Input Tokens2,000$2.00
Output Tokens12,000$12.00
๐Ÿ–ผImage Output Tokens120,000$120.00

* 1 credit โ‰ˆ $0.001 (actual charges may vary based on usage)

Quick Start

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
}'

Parameters

ParameterTypeRequiredDefaultDescription
messagesarrayYes-Array of message objects (OpenAI format)
temperaturefloatNo1Sampling temperature (0-2)
top_pfloatNo0.95Nucleus sampling parameter
max_tokensintegerNo-Maximum output tokens (text + image combined). Max: 32,768. Context window (input + output): 65,536 tokens.
streambooleanNofalseEnable Server-Sent Events streaming

Examples

Text Chat

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
}'

Image Generation

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
}'

Tips & Best Practices

1Max output tokens: 32,768 (combined text + image output)
2Context window 65,536 tokens โ€” much smaller than other Gemini 3 Pro models
3Image output tokens are priced at $120.00/M (~120,000 credits/M) โ€” 10x text output
4Each 1024px image uses approximately 1,120 output tokens (~134 credits per image)
5Text-only responses use standard text output pricing ($12.00/M)
6Function calling, caching, code execution, Live API are NOT supported
7Best image quality among Gemini models โ€” use for premium visual content

Use Cases

High-fidelity image generation
Creative design and illustration
Image editing with natural language
Visual storytelling
Product visualization and mockups

Model Info

ProviderGoogle
Version3.0-preview
CategoryLLM
Price500 credits

API Endpoint

POST /llm/gemini/v1beta/openai/chat/completions
Try in PlaygroundBack to Docs