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

# List Tags

Returns all unique tag names used on active prompts in the project. Tags help segment Finseo analytics (e.g. branded vs unbranded, or campaign labels).

<ParamField path="projectId" type="string" required>
  Project identifier.
</ParamField>

<RequestExample>
  ```bash cURL theme={"system"}
  curl --request GET \
    --url https://api.finseo.ai/v1/projects/67a1c2d3e4f5061728394a5b/tags \
    --header 'Authorization: Bearer sk_live_xxxxxxxx'
  ```

  ```python Python theme={"system"}
  import requests

  r = requests.get(
      "https://api.finseo.ai/v1/projects/67a1c2d3e4f5061728394a5b/tags",
      headers={"Authorization": "Bearer sk_live_xxxxxxxx"},
  )
  tags = r.json()["data"]
  print(tags)
  ```
</RequestExample>

<ResponseExample>
  ```json theme={"system"}
  {
    "data": [
      "Finseo",
      "branded",
      "comparison",
      "enterprise",
      "product"
    ]
  }
  ```
</ResponseExample>
