Developers
Get started in minutes. Our API is designed to feel familiar if you have used OpenAI, Anthropic, or similar providers.
Quickstart
Create an account
Sign up for a free Exerati account and get immediate access to the dashboard.
Generate an API key
Navigate to API Keys in your dashboard and create a new key. Copy it immediately — it is shown only once.
Make your first request
Use your API key to call any supported model endpoint. Our API is OpenAI-compatible, so existing SDKs work out of the box.
Explore models
Browse the model catalog to find the right model for your use case. Test responses in the AI Chat playground.
Code Examples
The same code works with any OpenAI-compatible library. Just change the base URL.
curl https://api.exerati.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "exerati-x1.0",
"messages": [{"role": "user", "content": "Hello!"}]
}'
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.exerati.com/v1"
)
response = client.chat.completions.create(
model="exerati-x1.0",
messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
apiKey: "YOUR_API_KEY",
baseURL: "https://api.exerati.com/v1",
});
const response = await client.chat.completions.create({
model: "exerati-x1.0",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);
API Reference
Full reference documentation for all available endpoints.
/chat/completions
/completions
/models
/models/{model_id}
Documentation
Comprehensive guides and API reference.
Models
Browse all available AI models.
API Keys
Generate and manage your API keys.
Install & Connect
Choose your platform and get connected in minutes.
macOS Application
Native macOS application with a beautiful chat interface, conversation management, and model switching.
# Apple Silicon (M1/M2/M3/M4)
curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-arm64.dmg -o Exerati.dmg
open Exerati.dmg
Intel Mac: curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-x64.dmg -o Exerati.dmg
exerati --version
exerati chat
Windows Application
Native Windows application with the same powerful chat interface and model access.
curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-x64.exe -o Exerati.exe
.\Exerati.exe
exerati --version
exerati chat
Linux Application
Native Linux application packaged as an AppImage. Works on all major distributions.
curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-x64.AppImage -o Exerati.AppImage
chmod +x Exerati.AppImage
./Exerati.AppImage
exerati --version
exerati chat
Terminal CLI
Powerful CLI for terminal-native workflows. Pipe data, chain commands, and integrate into scripts.
# Linux / macOS
curl -fsSL https://exerati.com/install.sh | bash
# Windows CMD
curl -fsSL https://exerati.com/install.cmd -o install.cmd && install.cmd
# Windows PowerShell
irm https://exerati.com/install.ps1 | iex
exerati --version
exerati chat "What is the meaning of life?"
Cursor IDE Extension
Integrate Exerati directly into your Cursor editor for inline code completions and chat.
Open Cursor → Extensions → Search "Exerati"
Or: cursor --install-extension exerati.exerati-ai
Check Extensions panel for Exerati
Cmd+Shift+P → "Exerati: Start Chat"
Antigravity IDE Extension
Seamless AI integration for the Antigravity IDE with code generation and intelligent assistance.
Open Antigravity → Marketplace → Search "Exerati"
Or: antigravity --install-extension exerati.exerati-ai
Check Extensions panel for Exerati
Ctrl+Shift+P → "Exerati: Start Chat"
Ready to start building?
Join developers using Exerati to power their AI applications. Free to start, pay as you grow.
Create Free Account