Documentation
Learn Anzoth from API access to your first request.
Anzoth gives you private AI infrastructure with an OpenAI-compatible API, customer-scoped API keys, Knowledge Bases, usage tracking, and a dashboard that keeps the whole flow easy to understand.
Start with
An API key and a single curl request.
Use for
Chat, coding, and retrieval-backed workflows.
Models
Anzoth-Core and Anzoth-Coder.
Private data
Knowledge Bases stay scoped to your account.
Get started
A simple onboarding flow.
Follow these six steps to move from a fresh account to a live API request and usage monitoring.
Step 1
Sign up
Create your account with your email, organization name, and use case. Your dashboard is ready as soon as the account is created.
Step 2
Verify email
Confirm ownership of the address on file so your API key and model access are fully enabled.
Step 3
Reveal your API key
Open the API Keys page, reveal the masked key once, and copy it into your client or test environment.
Step 4
Choose a model
Use Anzoth-Core for general reasoning and Anzoth-Coder for coding and development tasks.
Step 5
Make your first request
Call the OpenAI-compatible API with your API key and start with a simple chat completion.
Step 6
Monitor usage
Review account totals, per-key usage, and recent requests in the Usage page to keep an eye on spend and activity.
Explore
Topic cards for the main product areas.
Beta onboarding
Follow the first-user launch checklist.
See the signup, verification, key reveal, Playground, API, and Knowledge Base flow in one place.
Start here
Anzoth CLI
Install the CLI for your platform.
Choose the ZIP or npm install path, verify the checksum, and follow the current commands from the install guide.
Download CLI
API Quickstart
Call the API from curl or the OpenAI SDK.
Get the base URL, auth header, request fields, and common error codes for a first successful request with your API key.
Start here
Models
Understand when to use Anzoth-Core or Anzoth-Coder.
See the user-facing model names and the kinds of tasks each one is intended for.
Model guide
Knowledge Bases
Upload documents and ask grounded questions.
Create a knowledge base, upload a file, wait for ingest, and read citation-backed answers.
Private context
Usage
Track requests and token usage by key.
Review account totals, per-key breakdowns, and recent requests without ever seeing raw key values.
In your dashboard
Account Settings
Update safe profile fields.
Edit your display name and organization label while keeping secrets, billing, and runtime settings untouched.
Dashboard settings
Troubleshooting
Read the common API error guide.
Use friendly troubleshooting notes to separate user-fixable issues from temporary service problems.
Optional reference
Example
Your first request.
Use the API key in the Authorization header, choose a model, and call the OpenAI-compatible chat completions endpoint.
Base URL
https://api.anzoth.com
Auth
Bearer YOUR_ANZOTH_API_KEY
Models
Anzoth-Core or Anzoth-Coder
curl
shell
curl https://api.anzoth.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_ANZOTH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Anzoth-Core",
"messages": [
{ "role": "user", "content": "Say hello in one sentence." }
],
"max_tokens": 128
}'POST /v1/chat/completions · OpenAI-compatible
Next steps
Move from docs to dashboard.
Once you have a key, use the dashboard to track usage, review model access, and manage Knowledge Bases and account settings.
