Skip to content
Docs menu

LLM models

GPT-5.2

On this page

GPT-5.2 — frontier reasoning and generation through one API.

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

Operations

OperationmodelIdEndpointRequired input
Defaultgpt-5-2POST /api/v1/generateprompt
Poll taskGET /api/v1/task/{id}?model=gpt-5-2

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (default: Draft a warm, friendly three-sentence welcome message for a new member joining a downtown coworking space.)
memorybooleanNoAutomatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false)
web_searchbooleanNoUse Web Access (true/false) (default: true)
reasoning_effortstringNoControl reasoning depth: Low for faster responses, High for deeper analysis (options: Low | High) (default: High)
systemstringNoSystem instruction for the model. Defaults to "You are GPT-5.2, developed by OpenAI." 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":"gpt-5-2","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"web_search":true,"reasoning_effort":"High"}}'