API·QUICKSTART
Quickstart
You'll need an Onnie workspace. From there: mint a key, make one read call, you're done.
1. Mint an API key
Open your workspace → Settings → API Keys → Create new key. Give it a name, pick the scopes you need, and copy the key when shown — it's only displayed once.
Your key looks like:
onn_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4
2. Make your first call
curl https://api.onnie.ai/api/public/v1/tables \
-H "Authorization: Bearer onn_live_..."
You'll get back the list of tables in your workspace.
3. Read records from a table
curl https://api.onnie.ai/api/public/v1/tables/{tableId}/records?limit=10 \
-H "Authorization: Bearer onn_live_..."
Next steps
- Understand the authentication model
- Learn about rate limits
- Browse the full endpoint reference