List API Keys

List API keys you are allowed to see. apikeys:read exposes keys on your own account; apikeys:read:sub exposes keys on descendant accounts.

Headers
  • Accept
    enum
    const:  
    application/json
    required

    Response format. Must be application/json.

    values
    • application/json
Responses
  • application/json
  • application/json
  • application/json
Request Example for get/v5/apikeys
curl /v5/apikeys \
  --header 'Accept: application/json'
[
  {
    "id": "string",
    "account_id": "string",
    "name": "string",
    "key": "string",
    "key_last4": "string",
    "permissions": [
      "payments:tap-ios"
    ],
    "status": "active",
    "expires_at": "2026-07-10T18:41:46.914Z",
    "created_at": "2026-07-10T18:41:46.914Z",
    "last_used_at": "2026-07-10T18:41:46.914Z",
    "is_legacy": true
  }
]