Overview
A quick look at your 0perator account.
—
Active API keys
—
Requests today
—
Requests this month
Developer
Plan
Quickstart
Your account is OpenAI-compatible. Point any client at:
Base URL
https://api.axe.onl/v1Model
operator-1mcurl https://api.axe.onl/v1/chat/completions \
-H "Authorization: Bearer $OPERATOR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"operator-1m","messages":[{"role":"user","content":"Hello"}]}'
Recent activity
API keys
Keys authenticate your requests to the 0perator API. Keep them secret.
Usage
Requests and tokens for your account.
Organization
Manage who has access to your 0perator account.
Billing
Your plan and payment details.
You're on the Developer plan
Free for individual use against
operator-1m. No card on file.Payment
Upgraded plans and self-serve billing are coming soon. Reach out to your AXE contact for higher limits in the meantime.
Settings
Your 0perator identity and sign-in details.
Email
—
Account ID
—
Token prefix
—
Session
Sign out of the 0perator console on this device.
Danger zone
Delete account
Permanently delete your account and revoke all keys.
Docs
Get started with the 0perator API.
Operator is OpenAI-compatible
Use your key in any tool that speaks the OpenAI API — Cursor, Continue, the OpenAI SDKs, LangChain, and more. Two settings:
Base URL https://api.axe.onl/v1
Model operator-1m
Auth Authorization: Bearer op_<your_key>
curl
curl https://api.axe.onl/v1/chat/completions \
-H "Authorization: Bearer $OPERATOR_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"operator-1m","messages":[{"role":"user","content":"Hello"}]}'
OpenAI SDK (Python / JS)
from openai import OpenAI
client = OpenAI(base_url="https://api.axe.onl/v1", api_key="op_...")
client.chat.completions.create(model="operator-1m",
messages=[{"role":"user","content":"Hello"}])
Cursor / Continue
Settings → Models → add an OpenAI-compatible provider. Base URL
https://api.axe.onl/v1, API key your op_… key, model operator-1m.Support
Reach out to your AXE contact for higher rate limits or questions.