Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns a list of all API keys for the organisation. Each key includes basic information, masked key value, environment, description, and expiration date. Active and deleted keys are both included - use the isDeleted flag to filter.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredArray of API keys.
Single API key item.
idstringRequiredExternal identifier (UUID) of the API key.
apiKeystringRequiredMasked API key value (shows first 10 chars, rest masked).
environment"PROD" | "DEV" | "ROOT"RequiredEnvironment type: "PROD" for production, "DEV" for development/sandbox, "ROOT" for system-level access.
usedCountTodaynumberRequiredNumber of API calls made with this key today.
memberobjectOptionalMember information if key is member-specific.
namestringRequiredName of the member this key is assigned to.
isActivebooleanRequiredWhether the key is currently active and can be used.
isDeletedbooleanRequiredWhether the key has been deleted (invalidated).
descriptionstringOptionalHuman-readable description of the key purpose.
expirationDateDate | string | string | numberRequiredDate when the key will expire and become unusable.
Date when the key will expire and become unusable.
insertedDateDate | string | string | numberRequiredDate when the key was created.
Date when the key was created.
itemCountnumberRequiredTotal number of API keys.
{
"items": [
{
"id": "example_id",
"apiKey": "example_apiKey",
"usedCountToday": 0,
"member": {
"name": "example_name"
},
"isActive": false,
"isDeleted": false,
"description": "example_description"
}
],
"itemCount": 0
}GET /bff/api-key/list
curl -X GET "https://api.bizkithub.com/bff/api-key/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.