Get Account Api Keys

Get all API keys for an account with option to include key values.

Path Parameters
  • account_id
    Type: string · Account Id
    required
Query Parameters
  • include_keys
    Type: boolean · Include Keys

    Include the actual API keys in the response

Headers
  • Accept
    enum
    const:  
    application/json
    required

    Response format. Must be application/json.

    values
    • application/json
Responses
  • application/json
  • application/json
Request Example for get/v1/accounts/{account_id}/api-keys
curl 'https://api.uat.koard.com/v1/accounts/{account_id}/api-keys?include_keys=false' \
  --header 'Accept: application/json' \
  --header 'x-koard-apikey: YOUR_SECRET_TOKEN'
[
  {
    "account_id": "string",
    "created_at": "2026-06-22T13:58:38.599Z",
    "expires_at": "2026-06-22T13:58:38.599Z",
    "id": "string",
    "key": "string",
    "name": "string",
    "status": "active"
  }
]