LLM models
Gemini 2.5 Flash
On this page
Gemini 2.5 Flash — frontier reasoning and generation through one API.
| modelId | gemini-2-5-flash |
| Modality | text |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Default | gemini-2-5-flash | POST /api/v1/generate | prompt |
| Poll task | — | GET /api/v1/task/{id}?model=gemini-2-5-flash | — |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text value (default: In three vivid sentences, explain what causes the aurora borealis to shimmer in ribbons of green and violet across the polar night sky.) |
| memory | boolean | No | Automatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false) |
| structured_outputs | boolean | No | Generate structured outputs (true/false) (default: false) |
| function_calling | boolean | No | Lets you define functions that Gemini can call (true/false) (default: false) |
| google_search | boolean | No | Use Google Search (true/false) (default: true) |
| thinking | boolean | No | Include the model's thinking process in the response (true/false) (default: true) |
| system | string | No | System instruction for the model. Defaults to "You are Gemini 2.5 Flash, developed by Google." when omitted. |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"gemini-2-5-flash","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"structured_outputs":false,"function_calling":false,"google_search":true,"thinking":true}}'