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.
- مفتاح API واحد مشترك بين جميع المزودين
- تنقل model skills التوثيق والـschemas إلى مساحة عملك
- فوترة حسب كل طلب، بلا التزام
- لا تُفرض رسوم على عمليات التوليد الفاشلة
ما يميزها
جميع نماذج Google
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.
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.
ثبّت model skill من Google.
اختر نموذجًا وأضف مهارته حتى تحصل أداة البرمجة على التوثيق والـschemas وملاحظات الأسعار وخطوات الإعداد.
# 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." }]
});
كل إصدار من Google
| Model | Variant | Billing | From | |
|---|---|---|---|---|
|
|
gemini-2.5-flash | 1K tokens | $0.020 | عرض → |
| gemini-2.5-pro | 1K tokens | $0.050 | عرض → | |
| gemini-3-flash-preview | 1K tokens | $0.020 | عرض → | |
| gemini-3-pro-preview | 1K tokens | $0.060 | عرض → | |
| gemini-3.1-pro-preview | 1K tokens | $0.060 | عرض → | |
| gemini-3.5-flash | 1K tokens | $0.050 | عرض → | |
|
|
gemini-omni-audio | call | $0.0000 | عرض → |
| gemini-omni-character | call | $0.0000 | عرض → | |
| gemini-omni-text-to-video | call | $3.60 | عرض → | |
|
|
imagen-4 | call | $0.080 | عرض → |
| imagen-4-fast | call | $0.040 | عرض → | |
| imagen-4-pro-remix-image | call | $0.180 | عرض → | |
| imagen-4-ultra | call | $0.120 | عرض → | |
|
|
nano-banana | call | $0.040 | عرض → |
| nano-banana-2 | call | $0.080 | عرض → | |
| nano-banana-edit | call | $0.040 | عرض → | |
| nano-banana-pro | call | $0.180 | عرض → | |
|
|
veo-3.1 | call | $2.50 | عرض → |
| veo-3.1-fast | call | $0.600 | عرض → |
الأسئلة الشائعة حول Google
هل هذا تكامل رسمي مع Google؟
يوفّر RunAPI واجهة API مُدارة مع تسعير وقدرات وسلوك أخطاء واضح وشفاف.
هل أحتاج إلى حساب Google؟
لا — يكفي مفتاح RunAPI الخاص بك للوصول المُدار.
ما مقدار زمن الاستجابة الإضافي بسبب العبور عبر البروكسي؟
عادةً أقل من 20 مللي ثانية. يحتفظ RunAPI بطبقة البروكسي قريبة من مناطق تنفيذ النماذج.
هل يتم تخزين الصور / الفيديوهات مؤقتًا؟
تُخزَّن المخرجات المُولَّدة ويمكن استرجاعها عبر معرّف المهمة. لا يتم تخزين المدخلات مؤقتًا.
هل يمكنني استخدام مفتاحي الخاص؟
ليس حاليًا — تستند الطلبات إلى وصول مُدار بواسطة RunAPI.