Skip to main content

Developers

Get started in minutes. Our API is designed to feel familiar if you have used OpenAI, Anthropic, or similar providers.

Quickstart

1

Create an account

Sign up for a free Exerati account and get immediate access to the dashboard.

2

Generate an API key

Navigate to API Keys in your dashboard and create a new key. Copy it immediately — it is shown only once.

3

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.

4

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
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!"}]
  }'
Python
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)
Node.js
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.

POST /chat/completions
POST /completions
GET /models
GET /models/{model_id}

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.

install
# 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

verify
exerati --version
quick start
exerati chat
Native macOS experience
Keyboard shortcuts
Multiple conversation tabs
Markdown rendering
Code syntax highlighting

Windows Application

Native Windows application with the same powerful chat interface and model access.

install
curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-x64.exe -o Exerati.exe
.\Exerati.exe
verify
exerati --version
quick start
exerati chat
Native Windows experience
System tray integration
Multiple conversation tabs
Markdown rendering
Code syntax highlighting

Linux Application

Native Linux application packaged as an AppImage. Works on all major distributions.

install
curl -fsSL https://exerati.com/releases/exerati-desktop/Exerati-Code-Desktop-x64.AppImage -o Exerati.AppImage
chmod +x Exerati.AppImage
./Exerati.AppImage
verify
exerati --version
quick start
exerati chat
AppImage — no install required
Works on Ubuntu, Fedora, Arch, etc.
Multiple conversation tabs
Markdown rendering
Code syntax highlighting

Terminal CLI

Powerful CLI for terminal-native workflows. Pipe data, chain commands, and integrate into scripts.

install
# 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
verify
exerati --version
quick start
exerati chat "What is the meaning of life?"
Pipe stdin/stdout
Multiple output formats (text, json, markdown)
Conversation history
Model selection
Streaming responses
CI/CD integration

Cursor IDE Extension

Integrate Exerati directly into your Cursor editor for inline code completions and chat.

install
Open Cursor → Extensions → Search "Exerati"

Or: cursor --install-extension exerati.exerati-ai

verify
Check Extensions panel for Exerati
quick start
Cmd+Shift+P → "Exerati: Start Chat"
Inline code completions
Chat sidebar
Code explanation
Refactoring suggestions
Context-aware responses

Antigravity IDE Extension

Seamless AI integration for the Antigravity IDE with code generation and intelligent assistance.

install
Open Antigravity → Marketplace → Search "Exerati"

Or: antigravity --install-extension exerati.exerati-ai

verify
Check Extensions panel for Exerati
quick start
Ctrl+Shift+P → "Exerati: Start Chat"
Inline code completions
Chat sidebar
Code explanation
Refactoring suggestions
Context-aware responses

Ready to start building?

Join developers using Exerati to power their AI applications. Free to start, pay as you grow.

Create Free Account