Grok Build 0.1

xAI chatreasoningtool_usevision Long

API ID: x-ai/grok-build-0.1-20260520

Input Price
$1.00
/1M tokens
Output Price
$2.00
/1M tokens
Cached Input
$0.20
Save 80%

About Grok Build 0.1

Grok Build 0.1 is a mid-range general-purpose model from xAI with ultra-long context (256k), suitable for conversations, content creation, and general AI tasks.

💰
Price Ranking
#1011 lowest price among 1240 Chat models

Model Specifications

Context Length
256k
Max Output
—
Release Date
2026-05-20
Capabilities
chat reasoning tool_use vision
Input Modalities
textimagefile
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

💰 Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$1.05
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$33.00
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$46.50
/month
500 analyses/day, ~2k tokens each

xAI Model Lineup

Compare all models from xAI to find the best fit

Model Input Output Context Capabilities
Grok Build 0.1 Current Free Free 256k chat reasoning tool_use vision
Grok 2 Vision 1212 Free Free 33k chat vision
Grok 2 Vision 1212 Free Free 33k chat vision
Grok Vision Beta Free Free 8k chat vision
Grok Vision Beta Free Free 8k chat vision
Grok 2 Free Free 33k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

OpenAI GPT-3.5 Turbo (older v0613)
Input: $1.00
Output: $2.00
Context: 4k
OpenAI GPT Audio Mini
Input: $0.60
Output: $2.40
Context: 128k
NVIDIA Nemotron 3 Ultra
Input: $0.60
Output: $2.40
Context: 512k
Anthropic Claude Haiku 4.5 (batch)
Input: $0.50
Output: $2.50
Context: 200k

🚀 Quick Start

Get started with Grok Build 0.1 API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="x-ai/grok-build-0.1-20260520",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)