Last refreshed 2026-04-18. Next refresh: weekly.
Why use Gemini 3 Pro on Replicate API?
Replicate API offers Gemini 3 Pro with pay-as-you-go pricing at $2.00/1M input tokens. Replicate is a cloud-based platform that enables users to run machine learning models easily and efficiently.
Compare Gemini 3 Pro across 2 providers to find the best fit for your use caseSetup recipe
Python + curlpip install replicateexport REPLICATE_API_TOKEN=...import replicate
output = replicate.run(
"gemini-3-pro",
input={"prompt": "Hello"}gemini-3-proRequest example
import replicate
# reads REPLICATE_API_TOKEN from env
# gemini-3-pro format: "owner/model-name" (latest version) or "owner/model-name:version-hash"
output = replicate.run(
"gemini-3-pro",
input={"prompt": "Hello"}
)
# Output is a list or generator depending on the model
print("".join(output))Gotchas
- Replicate uses "owner/model-name" format (e.g. "meta/meta-llama-3-8b-instruct") for the latest version, or "owner/model-name:version-sha" to pin to a specific version. The REST endpoint splits owner and model-name into the path: /v1/models/{owner}/{model-name}/predictions.
- The examples expect REPLICATE_API_TOKEN; rename it only if your application config maps the new variable.
Compare Gemini 3 Pro Across Providers
| Provider | Input (per 1M) | Output (per 1M) |
|---|---|---|
| Replicate API | $2.00 | $12.00 |
| GCP Vertex AI | $1.25 | $5.00 |
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $2.00 |
| Output tokens | $12.00 |
Capabilities
About Gemini 3 Pro
Google DeepMind's most advanced reasoning Gemini model. Part of the Gemini 3 series with frontier-class intelligence, multimodal understanding, and 1M token context window.
FAQ
What does Gemini 3 Pro cost on Replicate API?
On Replicate API, Gemini 3 Pro costs $2 per 1M input tokens and $12 per 1M output tokens.
What is the context window for Gemini 3 Pro on Replicate API?
Gemini 3 Pro supports a 1,000,000 token context window on Replicate API.
How does Replicate API compare to other Gemini 3 Pro providers?
Gemini 3 Pro is available from 2 providers. The cheapest input pricing is $1.25/1M tokens from GCP Vertex AI.
Who created Gemini 3 Pro?
Gemini 3 Pro was created by Google DeepMind as part of the Gemini 3 model family.
Is Gemini 3 Pro open source?
Gemini 3 Pro is not open source; the seed data lists it as proprietary.