Grok is the AI assistant built by xAI, Elon Musk's AI company, and it is wired directly into the social network X — which gives it one thing most rivals lack: a live feed of what the world is posting right now. As of mid-2026 the flagship is Grok 4.3, a frontier reasoning model with a one-million-token context window, sitting alongside a fast budget model, a maximum-effort "Heavy" tier, and separate engines for image, video, and voice.
This guide covers the whole picture: the model lineup, the three ways to access Grok, the features that actually set it apart, how to call it from the API, and where it makes sense to choose Grok over Claude, Gemini, or GPT.
The Grok model lineup
xAI ships a small family rather than one model. The hero above lays out the three you will actually pick between:
- Grok 4.3 — the flagship (launched April 30, 2026). A 1M-token context window, strong agentic tool-calling, and xAI's headline claim of an industry-leading low hallucination rate. This is the default for hard reasoning.
- Grok 4.1 Fast — the cheap, high-throughput option at roughly $0.20 / $0.50 per million input/output tokens, with an even larger 2M-token context. Reach for it on high-volume or latency-sensitive work.
- Grok 4 Heavy — a maximum-effort configuration (256K context) that runs multiple reasoning agents in parallel, available on the top SuperGrok Heavy tier.
Two more pieces round out the family: Grok Imagine, xAI's image and short-video generator (the 1.5 release improved image-to-video quality and speed), and a built-in voice mode for spoken conversations. There is also a lighter grok-build model aimed at coding agents. One caveat worth knowing: the underlying training cutoff is late 2024, so Grok leans on live search rather than memorized recency for anything current.
Three ways to access Grok
How you use Grok depends on whether you are a reader, a power user, or a developer:
In X, free or with X Premium. Anyone can use Grok inside the X app, with a free tier capped at roughly ten prompts every couple of hours; X Premium ($8/month) raises those limits. This is the path most casual users take, and it is where Grok's real-time-X superpower is most obvious.
SuperGrok, the standalone subscription. SuperGrok ($30/month, or $300/year) unlocks the full assistant at grok.com and in the mobile apps: DeepSearch, the "Big Brain" thinking mode, voice mode, and generous image and video generation. Heavy users and professionals can step up to SuperGrok Heavy ($300/month) for Grok 4 Heavy, the largest context windows, and immediate access to new models. (Tiers and prices change often — check x.ai/grok for the current lineup.)
The API, for builders. Developers sign up at console.x.ai, add credits, and call Grok like any other model — more on that below.
The features that set Grok apart
Strip away the branding and four things genuinely distinguish Grok from the competition:
- Real-time X access. DeepSearch can read the live X firehose and the open web, so Grok is unusually good at "what are people saying about this right now" questions that stump models working from a static training set.
- DeepSearch and Big Brain mode. DeepSearch runs an agentic research loop across sources; Big Brain (Think) mode spends extra compute on a single hard problem before answering.
- Voice and image generation in one place. A natural voice mode and Grok Imagine put conversation, pictures, and short video behind a single subscription.
- A looser persona. Grok is deliberately tuned to be more candid and less hedging than most assistants — a feature to some users and a risk to others, since fewer guardrails can mean more confidently wrong or edgy answers.
Using the Grok API
The API is intentionally easy to adopt: it is compatible with both the OpenAI and Anthropic SDKs, so in most cases you keep your existing client and change two things — the base URL and the model name.
curl https://api.x.ai/v1/chat/completions \
-H "Authorization: Bearer $XAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok-4.3",
"messages": [{"role": "user", "content": "Summarize today’s AI news from X."}]
}'
Pricing as of mid-2026: Grok 4.3 runs about $1.25 per million input tokens and $2.50 per million output, with prompt caching dropping cached input to roughly $0.05; Grok 4.1 Fast is far cheaper at about $0.20 / $0.50. xAI also offers sizeable free developer credits through its data-sharing program. Because the endpoint mirrors the OpenAI schema, streaming, tool calls, and structured JSON output all work the way you expect.
When to choose Grok
Grok is the obvious pick when recency is the job: monitoring a breaking story, tracking sentiment on X, or research that has to reflect the last few hours rather than last year. Its agentic tool-calling and large context also make it a capable general reasoner and coding assistant. Where it is weaker is the polish and ecosystem maturity of the longer-established labs, and the looser persona means it pays to verify anything high-stakes. If your work is deeply tied to X or needs live information, Grok is hard to beat; for the most rigorous coding or enterprise governance, it is worth comparing against Claude and Gemini before committing.
Want AI news before everyone else?
The morning's most important AI stories, straight to your inbox. No fluff.