> ## 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.

# Tags auflisten

Gibt alle eindeutigen Tag-Namen zurück, die auf aktiven Prompts im Projekt verwendet werden. Mit Tags segmentierst du deine Finseo-Analysen (z. B. Branded vs. Unbranded oder Kampagnen-Labels).

<ParamField path="projectId" type="string" required>
  Projekt-ID.
</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>
