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

# Get Tags on Data Item

> Retrieve the tags applied to a data item

Returns the tags currently applied to a specific data item.

<ParamField path="data_id" type="string" required>
  UUID of the data item
</ParamField>

## Response

Returns an array of tag objects applied to the data item.

<ResponseField name="id" type="string">
  Tag UUID
</ResponseField>

<ResponseField name="name" type="string">
  Tag name
</ResponseField>

<ResponseField name="tag_category_id" type="string">
  ID of the category this tag belongs to, or `null` if uncategorized
</ResponseField>

<ResponseField name="category_name" type="string">
  Name of the tag's category, or `null` if uncategorized
</ResponseField>

<RequestExample>
  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.atomscale.ai/tags/data-items/d290f1ee-6c54-4b01-90e6-d701748f0851",
      headers={"X-API-KEY": "YOUR_API_KEY"}
  )
  tags = response.json()
  ```

  ```bash cURL theme={null}
  curl "https://api.atomscale.ai/tags/data-items/d290f1ee-6c54-4b01-90e6-d701748f0851" \
    -H "X-API-KEY: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
      "name": "high-priority",
      "tag_category_id": "b1a2c3d4-1111-2222-3333-444455556666",
      "category_name": "Review Status"
    }
  ]
  ```
</ResponseExample>
