Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.arbiterapi.com/llms.txt

Use this file to discover all available pages before exploring further.

List Keys

Authorization
string
required
Bearer JWT token from login
curl "https://api.arbiterapi.com/v1/keys" \
  -H "Authorization: Bearer YOUR_JWT"

Create Key

curl -X POST "https://api.arbiterapi.com/v1/keys" \
  -H "Authorization: Bearer YOUR_JWT" \
  -H "Content-Type: application/json" \
  -d '{"label": "production"}'

Revoke Key

curl -X DELETE "https://api.arbiterapi.com/v1/keys/KEY_ID" \
  -H "Authorization: Bearer YOUR_JWT"