grok-4.5xAI · LLM
Modality
text
Reference rate
Usage-based
Provider
xAI
Create an EasyAI API key and use grok-4.5 with the supported chat endpoint. Confirm account availability in the console.
grok-4.5 is billed at the rate and billing unit confirmed in your console. This page includes public group offers and estimates for the stated usage scenarios; your account rates can differ.
Yes. One EasyAI key can access the models enabled for your account, including text, image, and video models where available.
Model pricing is temporarily unavailable.
Estimated with public group offers, excluding cache savings or additional usage. Your account rates and console records determine actual charges.
from openai import OpenAI
client = OpenAI(
base_url="https://easyairoute.com/v1",
api_key="sk-...",
)
resp = client.chat.completions.create(
model="grok-4.5",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://easyairoute.com/v1",
apiKey: "sk-...",
});
const resp = await client.chat.completions.create({
model: "grok-4.5",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(resp.choices[0].message.content);Enterprise volume purchases can qualify for better pricing. Request a quote for your models and scale.