Skip to main content

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"