Skip to content
All models

Gemini 2.5 Flash

by Google

gemini-2-5-flash

Overview

Gemini 2.5 Flash is the fast Gemini tuned for speed and price at scale, with the same 1M-token context. It fits real-time features and high-volume pipelines where every token counts.

Quick start

Simple code & API

Create an API key, point your SDK's base URL at Kumo, and call this model with the code you already have.

Create API key
curl https://api.kumo.cloud/v1/chat/completions \
  -H "Authorization: Bearer $KUMO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gemini-2-5-flash",
    "messages": [{ "role": "user", "content": "Hello from Kumo" }]
  }'

OpenAI-compatible — base URL https://api.kumo.cloud/v1. Your KUMO_API_KEY is read from the environment.