Here’s a number that flips the usual model-launch story on its head: on SWE Bench Pro, Grok 4.5 finishes tasks in an average of 15,954 output tokens – while Opus 4.8 burns through 67,020 on the same tasks. That’s roughly 4.2× fewer tokens for the same work. If your bill is per-token (and it is), that gap matters more than any benchmark chart.
Grok 4.5 dropped on July 8, 2026, and the tech press is stuck on Musk’s “Opus-class” quote. Skip the marketing recap – here’s what you’ll actually run into using it.
The two-minute context (so you’re not lost)
Built on xAI’s 1.5-trillion-parameter V9 foundation and trained alongside Cursor, the AI code editor, Grok 4.5 was trained on tens of thousands of NVIDIA GB300 GPUs. Context window: 500K tokens – big, but not the 1M some competitors offer. Throughput clocks at 91.3 tokens per second per Artificial Analysis (as of July 2026).
Pricing is the real hook. It costs $2 per million input tokens and $6 per million output tokens. Not the cheapest model on the market – but probably the cheapest one in the top-tier coding fight right now.
How to actually use Grok 4.5 in the next 10 minutes
Four realistic entry points. Pick based on what you’re doing:
- Just want to chat with it? It’s available in Grok Build at launch.
- Coding in your editor? It’s live inside Cursor on all plans, no config needed.
- Building something? Use the API – the raw path, described below.
- Office work? Plugins ship for Microsoft Word, PowerPoint, and Excel.
For the API, grab a key from the xAI console and fire off a request. The minimal working call looks like this:
curl -s https://api.x.ai/v1/responses
-H "Authorization: Bearer $XAI_API_KEY"
-H "Content-Type: application/json"
-d '{
"model": "grok-4.5",
"input": "Find and fix the bug: function median(a){a.sort();return a[a.length/2]}",
"reasoning_effort": "medium"
}'
Notice the reasoning_effort field. Most tutorials skip it. Don’t – see the pitfalls section below.
Pro tip: xAI is offering free Grok 4.5 usage for a limited time in Grok Build and Cursor at launch. If you just want to kick the tires, start there before spinning up an API key and a billing account.
Pitfalls other tutorials aren’t mentioning
1. The default reasoning_effort is “high” and it will burn tokens. Per xAI’s release notes, reasoning effort is configurable at low, medium, or high – with high as the default. Make an API call without specifying it and you’re on the most expensive setting. For simple tasks – reformatting, small edits, quick lookups – drop it to low. Your bill will thank you.
2. Time-to-first-token is actually slow. Artificial Analysis clocked Grok 4.5’s TTFT at 17.42 seconds, versus a 2.79-second median for reasoning models in its tier. Throughput is fine once it starts writing – 91.3 tokens per second – but if you’re building a chat UI, that opening pause will feel broken to users. Stream the output and show a thinking indicator, or you’ll get complaints.
3. EU users can’t use it yet. Grok 4.5 is not available in the EU in any xAI product or the API console, with EU availability expected mid-July 2026. If you’re piloting from a European team, that’s a hard block, not a paperwork detail.
What the benchmarks actually say (versus what Musk says)
Musk called it “Opus-class.” xAI’s own chart is more mixed. Here’s what they published on the launch page (as of July 8, 2026):
| Benchmark | Grok 4.5 | Opus 4.8 (max) | Fable 5 (max) |
|---|---|---|---|
| Terminal Bench 2.1 | 83.3% | – | 84.3% |
| SWE Bench Pro | 64.7% | 69.2% | 80.4% |
| DeepSWE 1.1 | 53% | – | 70% |
Source: xAI’s own launch chart. The catch: Fable 5 leads every row xAI chose to publish. Grok 4.5 isn’t the smartest model available – it’s the cheapest one that’s in the neighborhood. On SWE Bench Pro specifically, it trails Fable by ~16 points and Opus by ~4.5 points. “Opus-class” is marketing; the numbers are what they are.
One outlier worth flagging: it scored #1 on Harvey’s Legal Agent Benchmark, which is an odd result for a model marketed almost entirely around coding. Might be a hint that the training mix is broader than “code and math.” Might also be a favorable cherry-pick. Too early to tell.
One caveat: none of these benchmarks have independent third-party numbers yet for Grok 4.5. They’re xAI’s self-reported figures from its own launch page. Normal for a same-day release – just don’t treat them as settled science.
When NOT to use Grok 4.5
Every launch article tells you when to use the new thing. Here’s the inverse – cases where Grok 4.5 is the wrong pick as of July 2026:
- Interactive chat where users watch for a reply. That 17s TTFT will kill the UX.
- Your hardest coding tasks where failure costs real money. Fable 5 is still ahead on SWE Bench Pro by ~16 points. Pay the premium.
- You’re in the EU. Not a preference – a technical unavailability.
- Voice, audio, or video generation. Grok 4.5 supports text and image input, text output – that’s it. For voice, xAI has separate APIs.
- You need a context window above 500K. Long-doc analysts working on entire codebases or book-length inputs may hit the ceiling.
Performance in one paragraph
Grok 4.5 scores 54 on the Artificial Analysis Intelligence Index – well above the 29 median for comparable models. It’s smart. It’s fast to write once it gets going. And per token, it’s cheap. The catch is that “per token” only helps if the token-efficiency claim generalizes beyond SWE Bench Pro, which is the only benchmark xAI cited efficiency numbers for. Everything else is educated hope.
Your next move
Open the xAI launch page, grab an API key, and run one real task from your actual workflow against Grok 4.5 with reasoning_effort: "medium". Then run the same task against whatever you’re using now. Compare output quality, token count, and total cost. Don’t trust benchmarks or blog posts – including this one. Twenty minutes of your own eval beats a week of reading takes.
FAQ
Is Grok 4.5 free to use?
Yes, temporarily. xAI is offering free Grok 4.5 usage for a limited time in Grok Build and Cursor. API usage is paid from day one.
Should I switch from Claude or GPT to Grok 4.5?
Depends entirely on your task. If you’re doing high-volume coding or agentic work where you’re paying by the token and quality is “good enough,” the ~4× token-efficiency gap versus Opus 4.8 on SWE-style tasks could cut your monthly bill significantly. If you’re doing hard multi-file engineering where getting the wrong answer is expensive, Fable 5 still leads xAI’s own chart by double digits – the cheaper model isn’t cheaper when you need three retries. Run both on your own workload for a week before committing.
What’s the difference between Grok 4.5 and Grok Build?
Grok 4.5 is the model. Grok Build is xAI’s coding-focused agent product. Think of Build as the use – the terminal-style agent that calls the model under the hood.