Skip to content
Docs menu

LLM models

Gemini 2.5 Flash

On this page

Gemini 2.5 Flash — frontier reasoning and generation through one API.

modelIdgemini-2-5-flash
Modalitytext
PricingSee this model on the Pricing page for the current per-call price (with your markup).

Operations

OperationmodelIdEndpointRequired input
Defaultgemini-2-5-flashPOST /api/v1/generateprompt
Poll taskGET /api/v1/task/{id}?model=gemini-2-5-flash

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (example: In three vivid sentences, explain what causes the aurora borealis to shimmer in ribbons of green and violet across the polar night sky.)
memorybooleanNoAutomatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false)
structured_outputsbooleanNoGenerate structured outputs (true/false) (default: false)
thinkingbooleanNoInclude the model's thinking process in the response (true/false) (default: true)
systemstringNoSystem instruction for the model. Defaults to "You are Gemini 2.5 Flash, developed by Google." when omitted.
messagesarrayNoA conversation instead of a single `prompt`: up to 20 objects of { "role", "content" }, where role is user, assistant or system. Send `prompt` or `messages`, not both. Do not flatten a conversation into one prompt with "User:" / "Assistant:" labels — the model reads that as a single message, and a model using web search then searches for the whole block instead of your question.

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":"In three vivid sentences, explain what causes the aurora borealis to shimmer in ribbons of green and violet across the polar night sky.","memory":false,"structured_outputs":false,"thinking":true}}'