> ## 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 A Person's Tags

> The tags one person carries

Every tag on the person, across all of their groups. Connector tags live here
too: a connector is a person, and the tags that label them are the tags of a
`person` group.

## Path Parameters

<ParamField path="linkedinId" type="string" required>
  The person's LinkedIn public identifier — the same `linkedin_id`
  [List Connectors](/api-reference/list-connectors) returns. For
  `https://www.linkedin.com/in/nicdelaye` that is `nicdelaye`.
</ParamField>

## Response Fields

<ResponseField name="tags" type="array">
  The tags on the person: `id`, `group_id`, `name`, `color` and `closes`.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/record-tags/person/nicdelaye" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "tags": [
        {
          "id": "4c8a9b10-2d3e-4f50-8a61-7b2c3d4e5f60",
          "group_id": "1d2e3f40-5a6b-4c7d-8e9f-0a1b2c3d4e5f",
          "name": "Employee",
          "color": "#6366F1"
        }
      ]
    }
  }
  ```

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