Authentication

List the API tokens of a workspace.

Returns the workspace's own keys plus any legacy keys that were created before keys were bound to a workspace (those still work everywhere, so hiding them would leave the user unable to find and revoke them).

get/api/external/v1/get-api-tokens

Query parameters

workspace_idinteger required

The workspace to list keys for.

Example:55

The workspace to list keys for.

Response

Example response

{
  "tokens": [
    {
      "id": "9f1c...",
      "name": "Zapier production",
      "created_at": "2026-08-16T10:00:00.000000Z"
    }
  ]
}

Changes