Model Review

Grok 4.3 Review: Benchmarks, Pricing & Verdict

"Grok 4.3" is xAI's reasoning model, released in late April 2026, with a 1,000,000-token context window and official list pricing of $1.25 / $2.50 per 1M input/output tokens. It is confirmed real via xAI's official developer docs, and DataLLM Lab serves it on our OpenAI-compatible gateway at the same list rate. This review is unusually hands-on: we ran Grok 4.3 through our own executed 9-task coding benchmark (it scored 8/9), and every other number below is either from xAI's own docs (official), from xAI's marketing (vendor-reported), or from an independent evaluator (Artificial Analysis, Vals AI) — and we label which is which. Where the vendor's claims and the independent data disagree, we say so rather than pick a side.

Grok 4.3 review — xAI's 1M-context reasoning model, benchmarks and pricing at a glance

What Grok 4.3 is

Grok 4.3 is xAI's current reasoning model — a 1M-context, text-and-image model released in late April 2026, and one DataLLM Lab serves on its gateway. The essentials, straight from xAI's official developer docs:

On the release date: xAI's official docs do not state one. Independent trackers conflict — VentureBeat reports an April 17, 2026 early beta while Artificial Analysis lists April 30, 2026 — so "late April 2026" is the honest window. Everything in this review is dated as of July 2026.

One disclosure up front: we ran our own executed 9-task coding benchmark on Grok 4.3 — it scored 8/9 (details in the benchmarks section). Every other figure below is tagged official (xAI docs), vendor-reported (xAI marketing), or independent (a third-party evaluator).

Spec & positioning table

A single synthesized view of what Grok 4.3 is, where its numbers come from, and how confident we are in each. This is our own table, built from the sources cited throughout — not lifted from any one page:

AttributeValueSource typeConfidence
Model IDgrok-4.3Official (xAI docs)High
MakerxAIOfficialHigh
Context window1,000,000 tokensOfficialHigh
ModalitiesText + image in, text outOfficialHigh
ReasoningSupported (levels unverified)OfficialMedium
List price (in / out)$1.25 / $2.50 per 1MOfficialHigh
Cached input$0.20 per 1MOfficialHigh
Gateway price~$1.25 / $2.50 (matches list)Vendor (DataLLM Lab)High
AA Intelligence Index38 (rank ~55/186)Independent (Artificial Analysis)Medium
Output speed~96.8 tokens/secIndependent (AA)Medium
Vals Index46.48% (rank 26/35)Independent (Vals AI)High
ReleaseLate April 2026 (date disputed)DerivedMedium

"Video input" is intentionally absent: it is a press claim, not on xAI's official model page. Figures as of July 2026 and subject to change.

Pricing on xAI and the gateway

Grok 4.3 is a value-tier price for a 1M-context reasoning model — $1.25 in, $2.50 out per 1M tokens. xAI's official list pricing:

Token typePrice per 1M
Input$1.25
Output$2.50
Cached input$0.20

DataLLM Lab serves Grok 4.3 on our OpenAI-compatible API at approximately the same $1.25 / $2.50 rate, matching xAI's published list price. That $0.20 cached-input rate matters for agent and RAG workloads that resend the same system prompt or context repeatedly — the same lever we cover in the cheapest-LLM-API guide. For the current gateway number, the Grok 4.3 model page and pricing page are the source of truth.

Benchmarks: vendor vs independent

The independent data puts Grok 4.3 mid-pack, with one standout domain — which is a more useful signal than xAI's "tops the leaderboards" marketing. We separate vendor, independent, and our own first-party numbers deliberately:

BenchmarkResultSourceType
Our executed coding benchmark (9 tasks)8/9 — missed 1 (nested-dict flatten); ~$1.75 / 1k tasks, 8.4s avgDataLLM LabFirst-party
AA Intelligence Index (high)38 — rank ~55/186Artificial AnalysisIndependent
Output speed~96.8 tokens/secArtificial AnalysisIndependent
Vals Index46.48% — rank 26/35Vals AIIndependent
CorpFin v2 (corporate finance)rank #3/121Vals AIIndependent
Legal Researchrank #17/18Vals AIIndependent
TaxEval v2 (tax)rank #71/126Vals AIIndependent
Agentic tool calling / instruction following"tops the leaderboards"xAIVendor-reported
#1 in case law & corporate financeclaimedxAIVendor-reported

Two honesty flags worth stating plainly:

How this is sourced. Official specs and pricing are from xAI's Grok 4.3 model docs. Independent scores are from Artificial Analysis and Vals AI. The vendor claims are from xAI's official announcement post (xAI's news page returned HTTP 403 and could not be fetched directly). Verified July 2026.
best rank worst rank Corp Finance #3 / 121 Tax (TaxEval) #71 / 126 Legal Research #17 / 18
Grok 4.3's domain profile is lopsided: near the top in corporate finance, near the bottom in legal research. Bar length = position within each domain leaderboard (shorter is better). Source: Vals AI, July 2026.

Honest pros & cons

Bought on price and context, Grok 4.3 is compelling; bought on a single "best model" headline, it is oversold. Our synthesized read — now backed by our own executed coding test (8/9):

StrengthsWeaknesses / caveats
$1.25 / $2.50 is value-tier for a reasoning modelIndependent intelligence score (AA 38) is mid-pack, not frontier
Full 1M-token context windowWeak in legal research (#17/18) and tax (#71/126) per Vals AI
$0.20 cached input helps agent/RAG costVendor "#1" claims not corroborated independently
Strong in corporate finance (#3/121, Vals AI)"Native video" unconfirmed — not on official docs
Reasoning support; solid ~96.8 tok/s throughputReasoning-level controls unverified on the primary source

Net: a well-priced, huge-context reasoning model with a genuinely strong corporate-finance showing and a solid 8/9 on our own executed coding benchmark — but not a universal frontier leader, and its marketing runs ahead of the independent evidence.

Grok 4.3 vs rivals

Grok 4.3's edge is price-per-context; its rivals win on either raw intelligence or specific-domain depth. How to place it:

Who should use it

Reach for Grok 4.3 when you want a cheap, million-token reasoning model and can validate quality on your own task. Good fits and poor fits:

Call Grok 4.3 on the gateway

Grok 4.3 is live on DataLLM Lab's OpenAI-compatible endpoint — same key, same SDK, just swap the model string. Point any OpenAI-compatible client at our base URL:

from openai import OpenAI

client = OpenAI(
    base_url="https://www.datallmlab.com/v1",
    api_key="YOUR_DATALLMLAB_KEY",
)

resp = client.chat.completions.create(
    model="x-ai/grok-4.3",
    messages=[{"role": "user", "content": "Summarize this 10-K in 5 bullets."}],
)
print(resp.choices[0].message.content)

If a call fails, the error-code reference maps each status to a fix, and routing & failover shows how to reroute to an equivalent model automatically. New to gateways? Start with what an LLM gateway is.

Try Grok 4.3 without a new integration

DataLLM Lab serves Grok 4.3 alongside 300+ models on one OpenAI-compatible key — compare it against Claude, GLM 5.2 and more, with automatic failover if a provider hiccups.

FAQ

Is Grok 4.3 a real model and who makes it?

Yes — grok-4.3 is a current xAI model in the official docs.x.ai docs: a reasoning model with a 1M-token context window, text + image in, text out. Released late April 2026 (exact date disputed between an April 17 beta and an April 30 listing).

How much does Grok 4.3 cost?

xAI list pricing is $1.25 / 1M input, $2.50 / 1M output, and $0.20 / 1M cached input. DataLLM Lab serves it at approximately the same $1.25 / $2.50 rate. As of July 2026.

What is Grok 4.3's context window?

1,000,000 tokens per xAI's official docs — enough for whole codebases, long document sets or extended agent transcripts in a single request.

How does Grok 4.3 score on independent benchmarks?

Artificial Analysis: Intelligence Index 38 (rank ~55/186), ~96.8 tok/s. Vals AI: 46.48% Vals Index (26/35), with corporate finance #3/121 but legal research #17/18 and tax #71/126. Some press cited a 53 index figure that does not match AA's own page.

Has DataLLM Lab tested Grok 4.3?

On coding, yes — we ran it through our executed 9-task coding benchmark and it scored 8/9 (missing one nested-dict flatten task), at ~$1.75 per 1,000 tasks and 8.4s average latency. The other figures here are from xAI's official docs, xAI marketing (vendor-reported), or independent evaluators.

Is Grok 4.3 good for coding and agents?

xAI markets it as topping agentic tool-calling and instruction-following leaderboards, but that is vendor-reported and not fully corroborated. The 1M context and reasoning support are real pluses; for coding, compare it in our best coding LLM guide.

How does Grok 4.3 compare to Claude and GPT?

Much cheaper than frontier flagships (Claude Opus 4.8 is $5/$25) with a matching 1M window, but mid-pack on independent intelligence scores. Strong in corporate finance, weak in legal/tax. See Claude vs ChatGPT for the flagship framework.

Written by
Kevin Fan

Founder of DataLLM Lab, the unified LLM gateway. Kevin tests models the boring way — same prompts, real costs, unedited outputs — and writes up what the runs actually show.

One API for every model

One API, every model.

Get a single API key for Claude Opus 4.7, GPT-5.4, and 300+ more — with automatic price comparison and routing to the best model for every request.