grok-4-1-fast-non-reasoning API
grok-4-1-fast-non-reasoning is xAI's low-latency Grok variant that skips chain-of-thought and answers immediately. On CaMeL Hub it costs $1.25 per 1M input tokens and $2.50 per 1M output tokens via the OpenAI-compatible API — point base_url to https://api.camel-hub.com/v1 and keep your existing SDK code.
Pricing
| per 1M input tokens | per 1M output tokens | |
|---|---|---|
| CaMeL Hub | $1.25 | $2.5 |
| Provider list price | $1.25 | $2.5 |
Prices are the public default-group rate in USD per 1M tokens; input and output are billed separately. · Provider list price · verified 2026-07-11
Specifications
- Provider
- xAI
- Context window
- 1000000 tokens
- Endpoints
- openai, anthropic
What it is good for
- High-volume customer support chat where fast first-token latency matters more than deep multi-step reasoning
- Real-time classification and content moderation pipelines that process thousands of items per minute
- Bulk summarization of support tickets, call transcripts, and articles where output cost dominates the bill
- Whole-document Q&A and data extraction over contracts or codebases, using the 1M-token context window instead of a chunking pipeline
- Streaming writing assistants and autocomplete features that must start rendering a response immediately
- The inexpensive first-pass tier in a model-routing setup: handle easy requests here, escalate hard cases to a reasoning model
Quickstart
OpenAI-compatible: set base_url to https://api.camel-hub.com/v1 and use your CaMeL Hub API key. No SDK changes needed.
cURL
curl https://api.camel-hub.com/v1/chat/completions \
-H "Authorization: Bearer $CAMEL_HUB_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "grok-4-1-fast-non-reasoning",
"messages": [{"role": "user", "content": "Hello!"}]
}'
Python
from openai import OpenAI
client = OpenAI(
api_key="$CAMEL_HUB_KEY",
base_url="https://api.camel-hub.com/v1", # <-- the only change vs. the OpenAI default
)
resp = client.chat.completions.create(
model="grok-4-1-fast-non-reasoning",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)
Node.js
import OpenAI from "openai";
const client = new OpenAI({
apiKey: process.env.CAMEL_HUB_KEY,
baseURL: "https://api.camel-hub.com/v1", // <-- the only change vs. the OpenAI default
});
const resp = await client.chat.completions.create({
model: "grok-4-1-fast-non-reasoning",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(resp.choices[0].message.content);
Get an API key Browse integration guides
Frequently asked questions
How is grok-4-1-fast-non-reasoning billed on CaMeL Hub?
Input and output tokens are billed separately: $1.25 per 1M input tokens and $2.50 per 1M output tokens, with no per-request fee. You pay only for the tokens you use, funded by balance top-ups or a subscription plan.
Does it support streaming responses?
Yes. Pass stream: true in a standard OpenAI-style chat completion request and tokens are delivered incrementally over server-sent events — no special configuration needed.
What does "non-reasoning" mean in practice?
The model answers directly without an internal chain-of-thought phase, so the first token arrives quickly and you are never billed for hidden thinking tokens. Since May 15, 2026, xAI routes this model name to grok-4.3 with reasoning effort "none", which preserves exactly that behavior.
What is the context window?
1,000,000 tokens. After xAI retired the standalone slug in May 2026, requests under this name are served by grok-4.3, whose documentation lists a 1M-token context window — enough for an entire codebase or several books in a single request.
How do I get started?
Create an account at https://api.camel-hub.com/console, generate an API key, then point any OpenAI-compatible SDK at base_url https://api.camel-hub.com/v1 with model "grok-4-1-fast-non-reasoning". An Anthropic-compatible endpoint is also available if your tooling speaks that format.