> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get An Account's Tags

> The tags one account carries

Every tag on the account, across all of its groups. Each tag names the group it
came from, so a single-select group's tag can be told apart from the rest.

## Path Parameters

<ParamField path="companyId" type="string" required>
  The account's `company_id` (the company UUID).

  Not the account's `id`, which is its LinkedIn numeric id. Both ship on every
  account row; tag assignments are keyed the same way the account's state is.
</ParamField>

## Response Fields

<ResponseField name="tags" type="array">
  The tags on the account: `id`, `group_id`, `name`, `color` and `closes`.
  Resolve `group_id` through [List Tag Groups](/api-reference/list-tag-groups).
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/record-tags/account/9c4d5e6f-1a2b-4c3d-8e9f-0a1b2c3d4e5f" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "tags": [
        {
          "id": "7f3e1a22-0c5d-4c1e-9f8a-2b4d6e8f0a12",
          "group_id": "5a1c3f88-92d4-4b0e-8e7a-1f2b3c4d5e60",
          "name": "Enterprise",
          "color": "#3B82F6"
        }
      ]
    }
  }
  ```

  ```json 400 theme={null}
  {
    "success": false,
    "error": { "message": "Invalid company id", "code": "BAD_REQUEST" }
  }
  ```
</ResponseExample>
