Parameters
1 query
Query parameters
· 1idstringRequiredExternal identifier (UUID) of the API key.
550e8400-e29b-41d4-a716-446655440000Returns detailed information about a specific API key including usage statistics. Shows the masked key value, total usage count, total API calls made, and daily usage history for the last 90 days. Useful for monitoring API key usage and identifying patterns.
1 query
idstringRequiredExternal identifier (UUID) of the API key.
550e8400-e29b-41d4-a716-4466554400001 status code documented
externalIdstringRequiredExternal 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, ROOT for system-level access.
descriptionstring | nullRequiredHuman-readable description of the key purpose. Null if not set.
isActivebooleanRequiredWhether the key is currently active and can be used for API requests.
isDeletedbooleanRequiredWhether the key has been deleted/invalidated. Deleted keys cannot be used.
insertedDateDate | string | string | numberRequiredDate and time when the API key was created.
Date and time when the API key was created.
expirationDateDate | string | string | numberRequiredDate and time when the key will expire and become unusable.
Date and time when the key will expire and become unusable.
memberobjectOptionalMember information if key is member-specific. Undefined for organisation-wide keys.
idnumberRequiredInternal member ID.
namestringRequiredFull name of the member this key is assigned to.
usedCountTodaynumberRequiredNumber of API calls made with this key today.
usedCountTotalnumberRequiredTotal number of days this key has been used (including today).
usedSumTotalnumberRequiredTotal number of API calls made with this key (all time).
usageListobject[]RequiredDaily usage history for the last 90 days, ordered by date (newest first). Can be used to generate usage charts.
Daily usage record.
dateDate | string | string | numberRequiredDate of usage.
Date of usage.
countnumberRequiredNumber of API calls made on this date.
scopesstring[]RequiredList of scope codes assigned to this key. Empty array means full access (no restrictions).
{
"externalId": "example_externalId",
"apiKey": "example_apiKey",
"isActive": false,
"isDeleted": false,
"member": {
"id": 0,
"name": "example_name"
},
"usedCountToday": 0,
"usedCountTotal": 0,
"usedSumTotal": 0,
"usageList": [
{
"count": 0
}
],
"scopes": [
"string"
]
}GET /bff/api-key/detail
curl -X GET "https://api.bizkithub.com/bff/api-key/detail?id=550e8400-e29b-41d4-a716-446655440000" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.