Google AI Models
Veo 3, Imagen 4, Nano Banana, and Gemini — Google's full stack from video generation to multimodal reasoning.
Google offers frontier models spanning video (Veo 3 with synchronized audio), image (Imagen 4, Nano Banana), and language (Gemini multimodal LLMs). Through RunAPI, the entire Google AI stack shares a single key.
- Single API key shared across all providers
- No separate %{provider} account required
- Model skills carry docs, schemas, and setup steps into your workspace
- Per-call billing in USD, no subscription or minimum spend
- Failed generations are never charged
- Switch models by changing one parameter
- Billing consolidated into one monthly invoice
What stands out
One of the most-used model APIs from Google, chosen by developers for its balance of output quality, speed, and pricing.
One of the most-used model APIs from Google, chosen by developers for its balance of output quality, speed, and pricing.
Lowest starting price across the Google catalog, suited for high-volume workflows and cost-sensitive production pipelines.
All Google models available through RunAPI
Gemini API access for Google's multimodal LLM across chat, code generation, reasoning, and long-context tasks.
Gemini Omni API access for voice, character, and multimodal video resources in agent media workflows.
Imagen 4 API access for photorealistic text-to-image, precise typography, broad styles, and up to 2K resolution.
Nano Banana API access for fast text-to-image with accurate in-image text and multi-character consistency.
Veo 3.1 API access for high-fidelity video generation up to 4K with synthesized dialogue, sound effects, and ambience.
Install a Google model skill for your app.
Pick a model and add its skill so your coding tool has docs, schemas, pricing notes, and setup steps. Skills work with Claude Code, Codex, Gemini CLI, Cursor, and VS Code. Install once, then switch models by changing one parameter.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
POST /v1beta/models/*:streamGenerateContent
curl https://runapi.ai/v1/chat/completions \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gemini-3.5-flash",
"messages": [
{
"role": "user",
"content": "Analyze this codebase and suggest three performance improvements with before/after examples."
}
]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://runapi.ai/v1",
api_key="your-runapi-key"
)
response = client.chat.completions.create(
model="gemini-3.5-flash",
messages=[{"role": "user", "content": "Analyze this codebase and suggest three performance improvements with before/after examples."}]
)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://runapi.ai/v1",
apiKey: "your-runapi-key"
});
const response = await client.chat.completions.create({
model: "gemini-3.5-flash",
messages: [{ role: "user", content: "Analyze this codebase and suggest three performance improvements with before/after examples." }]
});
Every Google variant with pricing and model IDs
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
|
gemini-2.5-flash | 1K tokens | $0.020 | View → |
| gemini-2.5-pro | 1K tokens | $0.050 | View → | |
| gemini-3-flash-preview | 1K tokens | $0.020 | View → | |
| gemini-3-pro-preview | 1K tokens | $0.060 | View → | |
| gemini-3.1-pro-preview | 1K tokens | $0.060 | View → | |
| gemini-3.5-flash | 1K tokens | $0.050 | View → | |
|
|
gemini-omni-audio | call | $0.0000 | View → |
| gemini-omni-character | call | $0.0000 | View → | |
| gemini-omni-text-to-video | call | $3.60 | View → | |
|
|
imagen-4 | call | $0.080 | View → |
| imagen-4-fast | call | $0.040 | View → | |
| imagen-4-pro-remix-image | call | $0.180 | View → | |
| imagen-4-ultra | call | $0.120 | View → | |
|
|
nano-banana | call | $0.040 | View → |
| nano-banana-2 | call | $0.080 | View → | |
| nano-banana-edit | call | $0.040 | View → | |
| nano-banana-pro | call | $0.180 | View → | |
|
|
veo-3.1 | call | $2.50 | View → |
| veo-3.1-fast | call | $0.600 | View → |
Frequently asked questions about Google
Is this an official Google integration?
RunAPI exposes a managed API surface with transparent per-call pricing, fully documented capability and parameters, and clear error behavior. You get the same model output quality without managing a direct provider relationship or provider-side account.
Do I need a Google account?
No. Your RunAPI API key is enough for managed access to all Google models. You do not need to create a separate account, manage provider-specific credentials, or handle provider-side billing.
What's the latency overhead from proxying through RunAPI?
Typically under 20 ms. RunAPI keeps the proxy layer close to model execution regions to minimize added latency. Media generation time is dominated by the model itself, not the proxy.
Are images / videos cached?
Generated outputs are stored and retrievable by task ID. You can fetch completed results at any time using the task status endpoint or the RunAPI dashboard. Output URLs remain accessible for the retention period shown in the API docs. Inputs are not cached or stored.
Can I bring my own key?
Not currently. Calls use RunAPI-managed access, which simplifies authentication and lets RunAPI handle rate limiting, retries, and billing consolidation on your behalf.
How is billing consolidated?
All API calls across all providers appear on a single monthly USD invoice. There is no per-provider billing, no subscription, and no minimum spend. Failed generations are never charged.
What SDKs can I use with Google models?
Official SDKs are available for Python, Node.js, PHP, Java, Ruby, and Go. Each SDK handles authentication, async task polling, and typed responses. For LLM models, the OpenAI and Anthropic SDKs also work by pointing the base URL to RunAPI.
What are model skills and how do they work?
Model skills are installable packages that load a model's docs, typed schemas, pricing notes, and setup steps directly into your coding workspace. Install a skill with one command and your agent has the right context before you write integration code. Skills work with Claude Code, Codex, Gemini CLI, Cursor, and VS Code.
How do I switch between Google models?
Change the model parameter in your API request. All Google models share the same API key, the same request shape, and the same billing. No code changes, no re-authentication, and no separate billing setup are required when switching between models or between variants of the same model. You can also switch to models from other providers by changing the same parameter — the API surface is unified across the entire catalog.