OVERVIEW

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 إلى مساحة عملك
  • فوترة حسب كل طلب، بلا التزام
  • لا تُفرض رسوم على عمليات التوليد الفاشلة
FEATURES

ما يميزها

MODELS

جميع نماذج Google

QUICKSTART

ثبّت model skill من Google.

اختر نموذجًا وأضف مهارته حتى تحصل أداة البرمجة على التوثيق والـschemas وملاحظات الأسعار وخطوات الإعداد.

runapi.ai
# 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.7-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.7-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.7-flash",
  messages: [{ role: "user", content: "Analyze this codebase and suggest three performance improvements with before/after examples." }]
});
https://runapi.ai 5 endpoints
REFERENCE

كل إصدار من Google

جدول الأسعار الكامل →
Model Variant Billing Pricing
Gemini
gemini-2.5-flash 1K tokens Input $0.30 / 1M tokens | Output $2.50 / 1M tokens عرض →
gemini-2.5-pro 1K tokens Input $1.25-$2.50 / 1M tokens | Output $10.00-$15.00 / 1M tokens عرض →
gemini-3-flash-preview 1K tokens Input $0.50 / 1M tokens | Output $3.00 / 1M tokens · Input $0.30 / 1M tokens | Output $1.80 / 1M tokens عرض →
gemini-3.1-pro-preview 1K tokens Input $1.00-$2.00 / 1M tokens | Output $7.00-$10.50 / 1M tokens عرض →
gemini-3.5-flash 1K tokens Input $1.50 / 1M tokens | Output $9.00 / 1M tokens · Input $0.90 / 1M tokens | Output $5.40 / 1M tokens عرض →
gemini-3.6-flash 1K tokens Input $1.50 / 1M tokens | Output $7.50 / 1M tokens · Input $0.90 / 1M tokens | Output $4.50 / 1M tokens عرض →
gemini-3.7-flash 1K tokens Input $0.45 / 1M tokens | Output $2.25 / 1M tokens عرض →
Gemini Omni
gemini-omni-audio call $0.0000 عرض →
gemini-omni-character call $0.0000 عرض →
gemini-omni-flash-1-1 call $2.52 عرض →
gemini-omni-flash-preview call $0.460 عرض →
gemini-omni-text-to-video call $2.52 عرض →
Gemini TTS
gemini-2.5-pro-tts 1K tokens Input $1.40 / 1M tokens | Output $28.00 / 1M tokens عرض →
gemini-3.1-flash-tts 1K tokens Input $1.40 / 1M tokens | Output $28.00 / 1M tokens عرض →
Imagen 4
imagen-4 call $0.080 عرض →
imagen-4-fast call $0.040 عرض →
imagen-4-pro-remix-image call $0.240 عرض →
imagen-4-ultra call $0.120 عرض →
Nano Banana
nano-banana call $0.040 عرض →
nano-banana-2 call $0.080 عرض →
nano-banana-2-lite call $0.040 عرض →
nano-banana-edit call $0.040 عرض →
nano-banana-pro call $0.180 عرض →
Veo 3.1
veo-3.1 call $2.50 عرض →
veo-3.1-fast call $0.600 عرض →
veo-3.1-lite call $0.300 عرض →
FAQ

الأسئلة الشائعة حول Google

هل هذا تكامل رسمي مع Google؟

يوفّر RunAPI واجهة API مُدارة مع تسعير وقدرات وسلوك أخطاء واضح وشفاف.

هل أحتاج إلى حساب Google؟

لا — يكفي مفتاح RunAPI الخاص بك للوصول المُدار.

ما مقدار زمن الاستجابة الإضافي بسبب العبور عبر البروكسي؟

عادةً أقل من 20 مللي ثانية. يحتفظ RunAPI بطبقة البروكسي قريبة من مناطق تنفيذ النماذج.

هل يتم تخزين الصور / الفيديوهات مؤقتًا؟

تُخزَّن المخرجات المُولَّدة ويمكن استرجاعها عبر معرّف المهمة. لا يتم تخزين المدخلات مؤقتًا.

هل يمكنني استخدام مفتاحي الخاص؟

ليس حاليًا — تستند الطلبات إلى وصول مُدار بواسطة RunAPI.

ابدأ الآن

ابدأ البناء باستخدام نماذج Google.