grok-4-1-fast-non-reasoning API

At provider list price

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 tokensper 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
grok-4-1-fast-non-reasoning is the speed-first branch of xAI's Grok 4.1 family. Where reasoning models spend seconds deliberating before the first token appears, this variant answers directly: no internal chain-of-thought phase, fast time-to-first-token, and output that consists only of the text you actually see. That makes it a natural fit for interactive products — chat interfaces, autocomplete, live moderation — where users feel every hundred milliseconds of delay. A behavior worth knowing: on May 15, 2026, xAI retired the standalone grok-4-1-fast-non-reasoning slug. Requests sent under this model name are now served by grok-4.3 with reasoning effort set to "none". In practice nothing breaks — the calling convention is unchanged, billing stays at $1.25 per 1M input and $2.50 per 1M output tokens, and the model inherits grok-4.3's 1,000,000-token context window. Existing integrations keep working without a single code change. The cost profile is one of the model's strongest arguments. Because it never emits hidden reasoning tokens, the output tokens you are billed for are exactly the tokens in the response — cost per request is predictable in a way reasoning models are not. Combined with the million-token context window, that makes whole-document workloads economical: you can feed an entire contract, codebase, or transcript in one request instead of building a chunking pipeline. On CaMeL Hub a single API key covers this model alongside 480+ others, with streaming supported and both OpenAI-style and Anthropic-style request formats accepted.

What it is good for

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.

Compare with other models