Skip to main content
GET
/
orgs
/
{org_id}
/
projects
/
{project_id}
/
runs
/
{run_id}
/
reactions
cURL
curl --request GET \
  --url https://api.timbal.ai/orgs/{org_id}/projects/{project_id}/runs/{run_id}/reactions \
  --header 'Authorization: Bearer <token>'
{
  "reactions": [
    {
      "created_at": 123,
      "id": "<string>",
      "sentiment": "<string>",
      "user": {
        "email": "<string>",
        "id": "<string>",
        "name": "<string>",
        "photo_url": "<string>"
      },
      "feedback": "<string>"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required
project_id
string
required
run_id
string
required

Platform run id or idempotency key.

Query Parameters

page_token
string | null

Response

200 - application/json

Reactions listed

reactions
object[]
required
next_page_token
string | null