DocsAPI ReferenceApi Key/bff/api-key/list
getApi KeyAdmin BFF

/bff/api-key/list

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.

API KeygetBffApi-keyList

No parameters

This endpoint takes no path, query, header or body parameters.

Request

GET /bff/api-key/list

get
curl -X GET "https://api.bizkithub.com/bff/api-key/list" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

List of API keys with metadata.

{
  "items": [
    {
      "id": "example_id",
      "apiKey": "example_apiKey",
      "usedCountToday": 0,
      "member": {
        "name": "example_name"
      },
      "isActive": false,
      "isDeleted": false,
      "description": "example_description"
    }
  ],
  "itemCount": 0
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key