xAI (Grok) / grok-4-20-non-reasoning
Grok 4 20 Non-Reasoning
Grok 4 20 Non-Reasoning is a coding and reasoning model from xAI (Grok), suited for Responsive chat backends.
Context
128K
tokens
Input
$1.50
/ 1M tokens
Output
$7.50
/ 1M tokens
Quality
#19
Elo 1240
Overview
What this model is good for
Grok 4 20 Non-Reasoning is a coding and reasoning model from xAI (Grok), suited for Responsive chat backends.
Model capabilities
Tool calling
Can call tools or functions, so product flows can connect model output to backend actions.
Streaming
Supports streamed responses for chat, assistants, and interfaces that need visible incremental output.
Model maker
Model maker and access
This section shows the model maker, SeaLink model ID, protocol, and pricing information.
xAI (Grok)
Called through SeaLink's unified account, balance, and OpenAI-compatible API.
Protocol
OpenAI-compatible Chat Completions
Base URL: https://test.sealink.io/v1
Pricing
Pricing and cost sense
Prices come from the current model catalog. Simple estimates help users judge whether the model fits production volume.
Light production run
100K input + 25K output
$0.338
Higher-volume run
1M input + 250K output
$3.38
Actual billing follows usage logs and billing records; caching and media pricing depend on the endpoint.
API
Copy into your code
The model page should make it clear which model to copy, which base URL to use, and where to get an API Key.
model
grok-4-20-non-reasoningbase_url
https://test.sealink.io/v1Auth
Bearer $SEALINK_API_KEYcurl https://test.sealink.io/v1/chat/completions \-H "Authorization: Bearer $SEALINK_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "grok-4-20-non-reasoning","messages": [{"role": "user", "content": "Hello."}]}'
from openai import OpenAIclient = OpenAI(base_url="https://test.sealink.io/v1", api_key="<your-sealink-key>")resp = client.chat.completions.create(model="grok-4-20-non-reasoning",messages=[{"role": "user", "content": "Hello."}],)print(resp.choices[0].message.content)
import OpenAI from "openai";const client = new OpenAI({baseURL: "https://test.sealink.io/v1",apiKey: process.env.SEALINK_API_KEY,});const resp = await client.chat.completions.create({model: "grok-4-20-non-reasoning",messages: [{ role: "user", content: "Hello." }],});console.log(resp.choices[0].message.content);