API keys & quota
These endpoints apply to your tenant using API key authentication.API keys
Prefix:/keys
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST https://api.trygroundai.com/keys \
-H "Authorization: Bearer gnd_owner_key" \
-H "Content-Type: application/json" \
-d '{"name":"CI"}'
Manage API keys and inspect usage limits for your tenant.
curl -X POST https://api.trygroundai.com/keys \
-H "Authorization: Bearer gnd_owner_key" \
-H "Content-Type: application/json" \
-d '{"name":"CI"}'
/keys
| Method | Path | Description |
|---|---|---|
POST | /keys | Create a key (raw secret returned once) |
GET | /keys | List keys (prefixes and metadata only) |
DELETE | /keys/{key_id} | Revoke a key |
curl -X POST https://api.trygroundai.com/keys \
-H "Authorization: Bearer gnd_owner_key" \
-H "Content-Type: application/json" \
-d '{"name":"CI"}'
GET /quota
GET /quota/usage
curl https://api.trygroundai.com/quota/usage \
-H "Authorization: Bearer gnd_your_api_key"