Back to models
Google

Gemini 2.5 Flash Lite

Gemini 2.5 Flash-Lite is the fastest and most budget-friendly multimodal model in the 2.5 family.

Quick Stats

Context

1049K

Max Output

66K

Provider

Google

Specs

2

Modalities

in textin imagein filein audioin videoout text

Specs & List Price (per 1M tokens)

Quality
Input $0.1Output $0.4Cache read $0.01
Value
Input $0.05Output $0.2Cache read $0.005

Recommended Plan

Gemini 2.5 Flash Lite Starter Plan

Pay-as-you-go after top-up; $1 free credit for new users.

Buy Plan

API Endpoint

Model IDgoogle/gemini-2.5-flash-lite

cURL

curl https://intertoken.ai/v1/chat/completions \
  -H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google/gemini-2.5-flash-lite",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

Python (openai SDK)

from openai import OpenAI

client = OpenAI(
    base_url="https://intertoken.ai/v1",
    api_key="$TOKENPORTAL_API_KEY",
)

resp = client.chat.completions.create(
    model="google/gemini-2.5-flash-lite",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)

Start using this model

Sign up free, get an API key, and make your first call in 30 seconds.

Gemini 2.5 Flash Lite · TokenPortal