API Keys
API keys let you access the uvagatron.com REST API from your own applications. Generate keys from your Account page and include them in your requests for authenticated access.
Creating an API Key
Plan Limits
The number of API keys you can create depends on your subscription plan.
| Plan | Maximum API Keys |
|---|---|
| Free | 1 |
| Pro | 3 |
| Business | 5 |
| Scale | 10 |
| Enterprise | 20 |
Using API Keys
Include your API key in the Authorization header of every request using the Bearer scheme:
Authorization: Bearer your_api_key_hereAPI keys share the same monthly token pool as your account. Each API call consumes tokens based on the endpoint complexity: light endpoints (e.g. autocomplete) cost fewer tokens than heavy endpoints (e.g. semantic search or risk score).
Rate limits are also determined by your plan. If you exceed the rate limit, the API returns a 429 status code with a Retry-After header.
Revoking Keys
To revoke an API key, go to your Account page and find the key in the API Keys section. Click the delete icon next to the key you want to revoke.
Revocation takes effect immediately. Any requests using the revoked key will return a 401 Unauthorized response. This cannot be undone — you will need to generate a new key if needed.