Dot.API console

Private inference API

Pseudonymous keys, shared Dot credits, OpenAI-compatible routes. No account required.

API key

browser-local
No API key loaded.

Your credits are browser-only until you create or paste a key. API keys make the same credits usable from Dot and from agents.

0 cr browser-only
Key balanceno key
Requestsno key
Tokensno key
Credits spentno key
Browser credits0local

Token usage

last 30 days · input + output
Connect an API key to see token usage.
Jul 15Jul 30Aug 13
inputoutput
ModelRequestsInputOutputTotalCredits
Per-model usage appears here once a key is making requests.

Aggregate metrics only. No prompts, outputs, or network identifiers are retained.

Endpoints

base api.usedot.xyz/agent
MethodEndpointAuthDescription
GET/v1/modelspublicList available models, capabilities, and credit pricing.
POST/v1/chat/completionskeyOpenAI-compatible chat completions, with streaming and tools.
example request
curl https://api.usedot.xyz/agent/v1/chat/completions \
  -H "Authorization: Bearer $DOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"dot-auto","messages":[{"role":"user","content":"Hello"}]}'
GET/v1/creditskeyKey credit balance and status.
GET/v1/usagekeyAggregate usage: requests, tokens, credits, model totals.
POST/dotpay/veil/quotekeyQuote a request's credit cost before spending.
POST/dotpay/api-keys/mintvaultCreate a key from browser credits.
POST/dotpay/api-keys/fundvaultSync browser credits into an existing key.
POST/dotpay/api-keys/rotatekeyRotate a key while preserving shared credits.

Models

available
ModelContextToolsWebPricing
Loading models…

Quickstart

OpenAI-compatible
curl
curl https://api.usedot.xyz/agent/v1/chat/completions \
  -H "Authorization: Bearer $DOT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "dot-auto",
    "messages": [{"role": "user", "content": "Hello from Dot"}]
  }'
Hermes / OpenAI config
# OpenAI-compatible provider (Hermes, SDKs, agents)
base_url: https://api.usedot.xyz/agent/v1
api_key:  $DOT_API_KEY
model:    dot-auto

Default model dot-auto auto-routes per request. Set DOT_API_KEY to your dot_live_… key.