GET /api/applications/key
Validate an API key and return associated project and application info and permissions.Request
Headers
No request body.
Response
200 OK
Error responses
See Status codes.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Verify an API key and read its project and permissions.
| Header | Required | Description |
|---|---|---|
X-API-Key | Yes | The API key to verify |
{
"success": true,
"message": "API key is valid",
"data": {
"project_id": "proj_xyz789",
"application_id": "app_abc123",
"name": "My Application",
"permissions": {
"tokenization": { "allowed": true },
"provisioning": { "allowed": false }
}
}
}
| Status | Example message |
|---|---|
| 401 | Invalid API key |