xAI: Grok 4.6 was released by xAI on August 13, 2026 as an upgrade over Grok 4.5. It features enhanced capabilities for long‑running multi‑step agent tasks and interactive visual project creation. It matches GPT‑5.6 Sol in the composite intelligence index and excels at rapidly turning broad product concepts into structured, interactive, and functional early‑version applications.
This model is available from multiple providers. Select one to see its pricing and sample code.
Official channels of xAI
Transparent pay-as-you-go pricing by token usage — no subscriptions or hidden fees.
Your charge is determined by actual usage and the parameters selected for the request. The prices below stay in sync with this model's current configuration.
Copy an example below to start calling this model in minutes.
from openai import OpenAI
client = OpenAI(
base_url="https://api.apipod.ai/v1",
api_key="<YOUR_API_KEY>",
)
# Chat Completions
completion = client.chat.completions.create(
model="grok-4.6",
messages=[
{
"role": "user",
"content": "What is the meaning of life?",
}
],
)
print(completion.choices[0].message.content)