Google AI Studio

Google AI Studio

active

Google's free API gateway for Gemini models — Gemini 2.5 Flash and Flash-Lite are permanently free with no credit card required.

https://generativelanguage.googleapis.com/v1beta/openai

Avg Latency

90-day Uptime

%

Rate Limits

15 RPM / 1,000 RPD

Sign-up Required

Yes

Info

Base URL https://generativelanguage.googleapis.com/v1beta/openai
Sign-up Required Yes
Credit Card Not required
Context Window 1M
Last Verified 2026-03-30
openai-compatiblevisionthinkingfunction-call

Models (3)

gemini-2.5-flash-lite

CTX: 1M · 15 RPM

active

gemini-2.5-flash

CTX: 1M · 10 RPM

active

gemini-2.5-pro

CTX: 1M · 5 RPM

active

Quick Start

bash
export API_KEY="your_api_key_here"
curl https://generativelanguage.googleapis.com/v1beta/openai/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $API_KEY" \
  -d '{
    "model": "gemini-2.5-flash-lite",
    "messages": [
      {"role": "user", "content": "Hello! How are you?"}
    ]
  }'