Anzoth

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.

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.