Skip to content
Docs menu

LLM models

Gemini 3 Flash

On this page

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

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

Operations

OperationEndpointDescription
Text to completionPOST /api/v1/generateBase generation from a text prompt.
Poll taskGET /api/v1/task/{id}?model=gemini-3-flashRetrieve state and result URLs.

Input parameters

FieldTypeRequiredValues / example
prompttextarearequiredSend a message
MODELtextoptional
memoryselectoptionalfalse, true
function_callingselectoptionalfalse, true
thinkingselectoptionalfalse, true
reasoning_effortselectoptionalLow, High

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-3-flash","input":{"prompt":"In three vivid sentences, explain to a curious child why hot air balloons rise into the sky.","MODEL":"gemini-3-flash","memory":"false","function_calling":"false","thinking":"true","reasoning_effort":"High"}}'