POST /v1/chat/completions request. Keys are free and each includes 100 million tokens. There is no payment UI yet — create another key when a key’s allowance is spent.
You can get a key two ways:
- Recommended — create an account (username + fingerprint), then manage keys at inference.dahl.global/account.
- Quick — anonymous key from the landing page or
POST /tokens(same 100M allowance; you can link it to an account later).
Authorization: Bearer <api_key>.
Create an account
- Open inference.dahl.global and click Create account (or go to /account).
- Pick a username: 3–20 characters, letters, digits, underscore.
- Save the fingerprint you are shown once — it is your password. We store only a hash; fingerprints cannot be recovered.
- Your first API key is issued immediately. Copy it into your password manager.
Sign in again
Sign-in needs only the fingerprint (not the username):Signup via API
GET /v1/auth/check-username?username=….
Manage keys in your account
At inference.dahl.global/account (or with a session cookie):
Each new key again includes 100 million tokens. Statuses:
active, exhausted, revoked.
Anonymous key (no account)
Still supported for a fast start — the landing page Get API key / scratch flow andPOST /tokens create an unattached key:
Token issue endpoints live at the service root (
/tokens) or under /v1/auth and /v1/account. Chat completions use https://inference.dahl.global/v1/....Check remaining balance
With any API key, callGET /tokens/current:
usage field when present. The chat UI and account page refresh the same balance.
Use the key on requests
Bearer followed by the token. Other formats are treated as missing auth.
Public endpoints
These do not require a token:GET /v1/models— list model IDsGET /v1/status— recent model uptime probesGET /health— service healthGET /v1/auth/check-username— username availability
Error responses
Missing or invalid keys return 401:invalid API token, expired API token, not signed in, session expired, invalid fingerprint.
When the key has no allowance left, protected inference routes return 402 Payment Required:
POST /tokens) when the allowance is spent. Signup / sign-in rate limits return 429 (too many signup attempts / too many sign-in attempts).
Security practices
- Treat the fingerprint like a password — save it once, never commit it
- Do not commit API keys to source control — use environment variables or a secrets manager
- Revoke keys from the account page if they may have been exposed
- Prefer one account with separate keys per environment (development, staging, production)