Explore the upcoming Grok 4.7 multimodal reasoning model on Muapi. Adjustable reasoning depth, web search, and image inputs — pricing confirmed at launch.
About this model
Grok 4.7 is xAI's upcoming multimodal reasoning model, expected to build on the Grok 4 series with adjustable reasoning effort, mixed text/image inputs, and integrated web search tools. It is planned to support both a standard async endpoint (/grok-4-7) and a live streaming endpoint (/grok-4-7/stream) via SSE, billed on a token basis. Final benchmarks, context window, and pricing will be confirmed at launch.
Cost analysis
Configuration schema
| Parameter | Type | Description | Default |
|---|---|---|---|
| Prompt | string | The user message or instruction. | Solve this complex math puzzle step by step. |
| Image URL | string | Optional image URL for multimodal requests. | undefined |
| System Prompt | string | Optional system-level instruction to guide model behavior. | You are an expert tutor. |
| Reasoning Effort | Enum (4 options) | Reasoning effort level. Higher values provide more thorough reasoning. | low |
| Web Search | boolean | Enable web search tool for real-time information retrieval. | false |
The user message or instruction.
Solve this complex math puzzle step by step.Optional image URL for multimodal requests.
undefinedOptional system-level instruction to guide model behavior.
You are an expert tutor.Reasoning effort level. Higher values provide more thorough reasoning.
lowEnable web search tool for real-time information retrieval.
falseDeveloper documentation
The final request parameters, reasoning controls, and code examples will be published here when the API is available. Expected usage will mirror the existing Grok 4 endpoints:
curl -X POST https://muapi.ai/api/grok-4-7 \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Solve this complex logic puzzle step by step.",
"reasoning_effort": "high"
}'
Frequently asked
Not yet. This Muapi playground page for Grok 4.7 is marked coming soon until the API integration is ready.
Exact pricing has not been finalized and will be confirmed at launch, following the token-based billing model used by other Grok endpoints on Muapi.
Yes, it is expected to be multimodal like Grok 4.3 and Grok 4.5, accepting an optional image_url alongside the text prompt.
Yes, a web_search toggle is planned so the model can retrieve real-time information, consistent with the existing Grok 4 family.
Yes, a Server-Sent Events (SSE) streaming route at /grok-4-7/stream is planned alongside the standard async endpoint.