Skip to main content
Gemini 2.5 Flash Lite

Gemini 2.5 Flash Lite

Google's low-latency Gemini model for cost-sensitive, high-volume workloads.

Low LatencyHigh VolumeCost Sensitive

Context Window

1,048,576

Gemini 2.5 Flash Lite

Max Output

65,535

1M tokens

Input

$0.10

Output

$0.40

Model Codegemini-2.5-flash-lite

Playground

gemini-2.5-flash-lite

No output yet

Pricing

PlanContext WindowMax OutputInputOutputCache WriteCache Read
Gemini 2.5 Flash Lite
1,048,57665,535
$0.10
$0.40
-
$0.01

Official Vertex AI pay-as-you-go pricing is shown for text, image, and video input.

Audio input is billed at $0.30 per 1M tokens, with cached audio input at $0.03.

Cache read or cached input pricing applies to reused prompt tokens.

README

Gemini 2.5 Flash Lite is Google's lighter 2.5 model, optimized for low latency and lower cost while still keeping the multimodal and tool-use foundations of the broader Gemini 2.5 family.
  • Google describes Gemini 2.5 Flash Lite as a balanced model optimized for low-latency use cases.
  • It keeps key Gemini 2.5 capabilities such as multimodal input, grounding with Google Search, code execution, and a 1 million-token context length.
  • It is a strong fit for high-volume assistants, routing layers, background automation, and other workloads where throughput and cost matter more than frontier depth.

API

Use the API docs for request format, parameters, and integration details.

Google's low-latency Gemini model for cost-sensitive, high-volume workloads.

Model Code

gemini-2.5-flash-lite

View API Docs

API

Endpoint

POST /v1beta/models/{model}:generateContent

Authentication

x-goog-api-key: YOUR_REACH_API_KEY
Content-Type: application/json

Example

curl -X POST "https://direct.reachapi.ai/v1beta/models/YOUR_MODEL_ID:generateContent" \
  -H "x-goog-api-key: YOUR_REACH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "contents": [
      {
        "role": "user",
        "parts": [
          {
            "text": "Introduce ReachAPI in one sentence."
          }
        ]
      }
    ],
    "generationConfig": {
      "temperature": 0.2
    }
  }'