개요

Google은 비디오(동기화 오디오를 갖춘 Veo 3), 이미지(Imagen 4, Nano Banana), 언어(Gemini 멀티모달 LLM)에 걸친 프론티어 모델을 제공합니다. RunAPI를 통해 전체 Google AI 스택을 단일 키로 이용할 수 있습니다.

  • 제공사 전체에 공유되는 하나의 API key
  • Model skill이 docs와 schema를 워크스페이스로 가져옵니다
  • 호출 단위 과금, 약정 없음
  • 실패한 생성은 과금되지 않습니다
기능

주요 특징

모델

Google의 모든 모델

빠른 시작

Google model skill 설치.

모델을 선택하고 skill을 추가하면 코딩 도구가 docs, schema, 가격 메모, 설정 단계를 참조할 수 있습니다.

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.5-flash",
  "messages": [
    {
      "role": "user",
      "content": "이 코드베이스를 분석하고 이전/이후 예시와 함께 세 가지 성능 개선 방안을 제안해 주세요."
    }
  ]
}'
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": "이 코드베이스를 분석하고 이전/이후 예시와 함께 세 가지 성능 개선 방안을 제안해 주세요."}]
)
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: "이 코드베이스를 분석하고 이전/이후 예시와 함께 세 가지 성능 개선 방안을 제안해 주세요." }]
});
https://runapi.ai 5 endpoints
레퍼런스

Google의 모든 변형

전체 요금표 →
Model Variant Billing From
Gemini
gemini-2.5-flash 1K tokens $0.020 보기 →
gemini-2.5-pro 1K tokens $0.080 보기 →
gemini-3-flash-preview 1K tokens $0.020 보기 →
gemini-3-pro-preview 1K tokens $0.090 보기 →
gemini-3.1-pro-preview 1K tokens $0.090 보기 →
gemini-3.5-flash 1K tokens $0.050 보기 →
Gemini Omni
gemini-omni-audio call $0.0000 보기 →
gemini-omni-character call $0.0000 보기 →
gemini-omni-flash-preview call $0.600 보기 →
gemini-omni-text-to-video call $3.60 보기 →
Gemini TTS
gemini-2.5-pro-tts 1K tokens $0.0014 보기 →
gemini-3.1-flash-tts 1K tokens $0.0014 보기 →
Imagen 4
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
nano-banana call $0.040 보기 →
nano-banana-2 call $0.080 보기 →
nano-banana-2-lite call $0.030 보기 →
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 보기 →
FAQ

Google에 대한 자주 묻는 질문

공식 Google 통합인가요?

RunAPI는 투명한 가격, 기능, 오류 동작을 가진 관리형 API 표면을 제공합니다.

Google 계정이 필요한가요?

아니요. RunAPI key만 있으면 관리형 접근을 사용할 수 있습니다.

가격은 어떻게 청구되나요?

호출 또는 단위 기준으로 과금되며 실패한 생성은 청구되지 않습니다.

지금 시작

하나의 API로 Google 모델을 호출하세요.