Grok 4.20 Multi-Agent beta (0309 snapshot) - deep-research style multi-agent orchestration with a 1M-token context window. Served through the Responses API only.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
| Token Type | Credits | USD Equivalent |
|---|---|---|
| Input Tokens | 2,323 | $1.55 |
| Output Tokens | 4,645 | $3.10 |
| Cached Tokens | 371.6 | $0.25 |
* 1,500 credits โ $1 (actual charges may vary based on usage)
curl -X POST "https://api.core.today/llm/grok/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "grok-4.20-multi-agent-0309",
"instructions": "You are a research analyst. Cite the evidence you rely on.",
"input": "Compare the three leading approaches to long-context retrieval in 2026 and recommend one for a legal-document pipeline.",
"max_output_tokens": 4096
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model ID, e.g. "grok-4.20-multi-agent-0309". |
input | string | array | Yes | - | Responses API input - a plain string or an array of role/content messages (replaces `messages`). |
instructions | string | No | - | System-level instructions (replaces the `system` message). |
max_output_tokens | integer | No | 4096 | Cap on the visible answer. Sub-agent and reasoning tokens are billed separately and are not limited by this value. |
stream | boolean | No | false | Stream the response as server-sent events. |
Responses API request - the only endpoint this model accepts. A research-grade question amortizes the per-turn token floor.
curl -X POST "https://api.core.today/llm/grok/v1/responses" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer cdt_your_api_key" \
-d '{
"model": "grok-4.20-multi-agent-0309",
"instructions": "You are a research analyst. Cite the evidence you rely on.",
"input": "Compare the three leading approaches to long-context retrieval in 2026 and recommend one for a legal-document pipeline.",
"max_output_tokens": 4096
}'POST /llm/grok/v1/responses