Skip to main content
GET
/
projects
/
{project_id}
/
feedbacks
/
counts
Get feedback counts by status
import requests

url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/feedbacks/counts/"

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

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

print(response.text)
{
  "to_review": 8,
  "reviewed": 15
}

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

to_review
integer

Total count of individual feedbacks with status "to_review"

Example:

28

reviewed
integer

Total count of individual feedbacks with status "reviewed"

Example:

45

conversations_to_review
integer

Count of conversations with at least one unreviewed feedback

Example:

12

conversations_reviewed
integer

Count of conversations where ALL feedbacks are reviewed

Example:

8

ungrouped_to_review
integer

Count of feedbacks without a conversation that are "to_review"

Example:

4

ungrouped_reviewed
integer

Count of feedbacks without a conversation that are "reviewed"

Example:

2