Back to Models

Grok 4.1 Fast

![xAI](https://artificialanalysis.ai/img/logos/xai.svg)xAI
39/ 57

Intelligence Score

Intelligence

39

#51 of 212 (top 24%)

Speed

124 tok/s

#61 of 141

Price

$0.28

per M tokens

#41 cheapest of 142

Context Window

2M

tokens

Latency: 6ms (#121)

Score Breakdown

Quality Score65%
Speed Score16%
Cost Score98%

Use This Model

Claude Code

claude --model grok-4-1-fast-reasoning

API (cURL)

curl https://openrouter.ai/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $OPENROUTER_API_KEY" \
  -d '{
    "model": "grok-4-1-fast-reasoning",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Vercel AI SDK

import { generateText } from "ai";
import { openrouter } from "@openrouter/ai-sdk-provider";

const { text } = await generateText({
  model: openrouter("grok-4-1-fast-reasoning"),
  prompt: "Hello",
});
Back to Models