Meta

Llama 4 Maverick

1.05M ctxTextImage Tools

Released Apr 5, 2025 · 121B tokens this week · 5 providers

Overview

Meta's mixture-of-experts flagship, with native image understanding and a very large context window. Competitive on general chat and coding while staying inexpensive on open-weight hosts. A practical frontier substitute when you need weights you can move between providers.

programmingroleplaytranslation

Providers

Reference data — not yet measured from live traffic

PROVIDERMAX OUTOUTPUT /MQUANT
DeepInfraCheapest
1.05M16K$0.22$0.85480ms12098.80%fp8
Novita AI
524K16K$0.23$0.90540ms9898.60%fp8
Together AI
1.05M16K$0.25$0.95195ms15099.50%Full
Fireworks AI
1.05M16K$0.25$0.98400ms17599.60%Full
Amazon Bedrock
131K16K$0.26$1.02620ms10599.82%Full

Latency p50 reflects a provider’s API endpoint responsiveness — the round-trip to its API, not per-token inference time. These figures, with throughput and uptime, are reference data until the gateway aggregates its own traffic.

Price comparison

Blended $ per 1M tokens

Llama 4 Maverick$0.69
GPT-5.2$10.94

Blended rate per 1M tokens, weighted one part prompt to three parts completion — roughly the shape of a chat workload. Your mix will move the number.

Call it

OpenAI-compatible — swap the base URL and go

curl https://model.cards/api/v1/chat/completions \
  -H "Authorization: Bearer $MODELCARDS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "meta-llama/llama-4-maverick",
    "messages": [
      { "role": "user", "content": "Summarize the tradeoffs of speculative decoding." }
    ]
  }'