Skip to content
Docs

Quickstart

From zero to your first request (with logs).

1) Create an account

Register with email verification (or use Google OAuth if enabled). After you sign in, you’ll land on the Dashboard.

2) Create an API key

Go to API Keys and create a new key. Copy the Base URL from the page as well.

3) Call /v1/chat/completions

bash
1curl "$BASE_URL/chat/completions" \2  -H "Authorization: Bearer $API_KEY" \3  -H "Content-Type: application/json" \4  -d '{5    "model": "gpt-5.2",6    "messages": [{"role":"user","content":"Hello"}]7  }'

4) Verify logs

Open Logs. You should see the request with tokens, latency, TTFT and cost.