Google AI Modelleri
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.
- Sağlayıcılar arasında paylaşılan tek API anahtarı
- Model skill’leri dokümanları ve şemaları workspace’inize taşır
- Çağrı başına faturalandırma, taahhüt yok
- Başarısız üretimler ücretlendirilmez
Öne çıkanlar
Google içindeki tüm modeller
Google's multimodal LLM for chat, code generation, reasoning, and long-context tasks.
Voice, character, and multimodal video generation resources for narration, dialogue, and agent media workflows.
Yapılandırılabilir sesler, aksanlar, konuşma tarzları ve hızlarla çok konuşmacılı diyalog için Gemini TTS API erişimi.
Photorealistic text-to-image with precise typography, broad style range, and up to 2K resolution.
Fast text-to-image with accurate in-image text rendering and multi-character consistency.
High-fidelity video generation up to 4K with natively synthesized dialogue, sound effects, and ambience.
Bir Google model skill’i kurun.
Bir model seçin ve skill’ini ekleyin; böylece kod aracınız dokümanlara, şemalara, fiyat notlarına ve kurulum adımlarına sahip olur.
# Base URL
https://runapi.ai
# Endpoints
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages
POST /v1beta/models/{model}:generateContent
POST /v1beta/models/{model}: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." }]
});
Google için tüm varyantlar
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
Gemini
|
gemini-2.5-flash | 1K tokens | $0.020 | Gör → |
| gemini-2.5-pro | 1K tokens | $0.080 | Gör → | |
| gemini-3-flash-preview | 1K tokens | $0.020 | Gör → | |
| gemini-3.1-pro-preview | 1K tokens | $0.090 | Gör → | |
| gemini-3.5-flash | 1K tokens | $0.050 | Gör → | |
|
Gemini Omni
|
gemini-omni-audio | call | $0.0000 | Gör → |
| gemini-omni-character | call | $0.0000 | Gör → | |
| gemini-omni-flash-preview | call | $0.600 | Gör → | |
| gemini-omni-text-to-video | call | $3.60 | Gör → | |
|
Gemini TTS
|
gemini-2.5-pro-tts | 1K tokens | $0.0014 | Gör → |
| gemini-3.1-flash-tts | 1K tokens | $0.0014 | Gör → | |
|
Imagen 4
|
imagen-4 | call | $0.080 | Gör → |
| imagen-4-fast | call | $0.040 | Gör → | |
| imagen-4-pro-remix-image | call | $0.180 | Gör → | |
| imagen-4-ultra | call | $0.120 | Gör → | |
|
Nano Banana
|
nano-banana | call | $0.040 | Gör → |
| nano-banana-2 | call | $0.080 | Gör → | |
| nano-banana-2-lite | call | $0.030 | Gör → | |
| nano-banana-edit | call | $0.040 | Gör → | |
| nano-banana-pro | call | $0.180 | Gör → | |
|
Veo 3.1
|
veo-3.1 | call | $2.50 | Gör → |
| veo-3.1-fast | call | $0.600 | Gör → | |
| veo-3.1-lite | call | $0.300 | Gör → |
Google hakkında sık sorulan sorular
Bu resmi bir Google entegrasyonu mu?
RunAPI, şeffaf fiyatlandırma, yetenekler ve hata davranışıyla yönetilen bir API yüzeyi sunar.
Bir Google hesabına ihtiyacım var mı?
Hayır — yönetilen erişim için RunAPI anahtarınız yeterli.
Proxy üzerinden geçmenin gecikme etkisi nedir?
Genellikle 20 ms’nin altındadır. RunAPI, proxy katmanını model çalışma bölgelerine yakın tutar.
Görseller / videolar önbelleğe alınıyor mu?
Oluşturulan çıktılar saklanır ve görev kimliğiyle yeniden erişilebilir. Girdiler önbelleğe alınmaz.
Kendi anahtarımı kullanabilir miyim?
Şu anda değil — çağrılar RunAPI tarafından yönetilen erişimi kullanır.