What are Provisioning Keys
Provisioning Keys are special credentials that give you API access to manage your AI Router API keys programmatically. Provisioning Keys allow you to:- Create new Router API keys programmatically
- List and retrieve Router API keys
- Update Router API key settings (name, active status)
- Delete Router API keys
Creating a Provisioning Key
- Navigate to the Provisioning Keys page in the AI Router.
- Choose Create Provisioning Key, the following modal opens:

Enter here details for your Provisioning Key
- choose a unique Name for the key.
Manage Provisioning Keys
Provisioning Keys can be created, viewed, and managed from the dedicated AI Router page to ensure secure access.
Manage your Provisioning keys Here
- To disable a Provisioning Key, use the Toggle, it can be re-enabled at any time.
- To delete a Provisioning Key, use the
...button, and choose Delete to revoke a Provisioning Key.
Using Provisioning Keys via API
Provisioning Keys can be used to programmatically manage your Router API keys through the provisioning API.Authentication
Include your Provisioning Key in theAuthorization header as a Bearer token:
Available Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /v2/api-keys?source=router | List all Router API keys |
| POST | /v2/api-keys | Create a new Router API key |
| GET | /v2/api-keys/{id} | Get a specific Router API key |
| PATCH | /v2/api-keys/{id} | Update Router API key (name, active status) |
| DELETE | /v2/api-keys/{id} | Delete a Router API key |
Creating a Router API Key
Listing Router API Keys
Updating a Router API Key
Deleting a Router API Key
Key Restrictions
Provisioning Keys have important limitations to maintain security:- Router keys only - Can only create, list, update, and delete Router API keys. Cannot access workspace-level keys.
- No API calls - Provisioning Keys cannot make
/chat/completionscalls or other model invocation endpoints. They are restricted to key management only. - Cannot create provisioning keys - A provisioning key cannot create other provisioning keys.
- No budget or expiration - Provisioning Keys do not support credit limits, budget caps, or expiration dates.
- No workspace keys - Provisioning Keys cannot access, list, or manage workspace-level API keys. You must use the UI for workspace key management.