Account
Create API Key
Create a new API key for the authenticated account.
POST
https://util.axolite.app/v1/account/keysParameters
| Name | Location | Required | Description |
|---|---|---|---|
session | cookie | Yes | Current session cookie. |
name | body | No | Friendly display name for the key. Example: Production |
Request examples
curl -X POST "https://util.axolite.app/v1/account/keys" \
+ -H "Content-Type: application/json" \
+ -d '{
"name": "Production"
}'Sample response
{
"id": "d0d80a8d-b7e7-4bf4-8f57-1f74f09f89e7",
"name": "Production",
"key": "mcu_...",
"prefix": "mcu_123abc...",
"tier": "free",
"rpm_limit": 5000
}Notes
- Raw key values are shown only once at creation time.
- Each account can keep up to 5 active keys.