Skip to main content
GET
/
projects
/
{project_id}
/
playground-conversations
/
all-tags
Get all conversation tags
import requests

url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/playground-conversations/all-tags/"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "tags": [
    "analysis",
    "important",
    "review"
  ],
  "count": 3
}

Documentation Index

Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Headers

X-Impersonate-Email
string<email>

Email of the user to impersonate. Requires CAN_IMPERSONATE_OTHER_USERS permission. If the target user is not found or does not have access to the project, the request proceeds as the authenticated user. Contact Clarifeye to enable this permission.

Path Parameters

project_id
string<uuid>
required

UUID of the project

Response

Successful response

tags
string[]

List of unique tags sorted alphabetically

Example:
["analysis", "important", "review"]
count
integer

Total number of unique tags

Example:

3