Skip to content
Docs menu

LLM models

Grok 4.5

On this page

Grok 4.5 — frontier reasoning and generation through one API.

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

Operations

OperationmodelIdEndpointRequired input
Defaultgrok-4-5POST /api/v1/generateprompt
Poll taskGET /api/v1/task/{id}?model=grok-4-5

Input parameters

FieldTypeRequiredValues / example
promptstringYesText value (example: Explain quantum entanglement to a 10-year-old using a pair of magic gloves as the example. Keep it under 120 words.)
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)
reasoning_effortstringNoControl reasoning depth: Low for faster responses, High for deeper analysis (options: Low | Medium | High | XHigh) (default: Medium)
streambooleanNoSend true to receive the reply as an event stream (Content-Type: text/event-stream). Omit it and you get a single JSON response — streaming is opt-in on this endpoint. (true/false) (example: true)
imagesstring[]NoUp to 4 images per message — JPEG, PNG, GIF or WebP, 5 MB each. Send each one as a data: URL or an https URL. Images are billed as input tokens. (image URL)
systemstringNoSystem instruction for the model. Defaults to "You are Grok 4.5, developed by Grok." 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":"grok-4-5","input":{"prompt":"Explain quantum entanglement to a 10-year-old using a pair of magic gloves as the example. Keep it under 120 words.","memory":false,"structured_outputs":false,"reasoning_effort":"Medium","stream":true,"images":["data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAFklEQVR4nGP8z4AATAxIHFQeMg8OAgB1yQIDpk8YwwAAAABJRU5ErkJggg=="]}}'