---
title: "Get feedbacks for a conversation"
method: GET
path: "/api/v1/w/{wId}/assistant/conversations/{cId}/feedbacks"
tags: ["Feedbacks"]
---

# Get feedbacks for a conversation

`GET /api/v1/w/{wId}/assistant/conversations/{cId}/feedbacks`

Retrieves all feedback entries for a specific conversation.
Requires authentication and read:conversation scope.

## Path parameters

- `wId` string, required
- `cId` string, required

## Response `200`

List of feedback entries for the conversation

- object
  - `feedbacks` object[]
    - `messageId` string — ID of the message that received feedback
    - `agentMessageId` number — ID of the agent message
    - `userId` number — ID of the user who gave feedback
    - `thumbDirection` 'up' | 'down' — Direction of the thumb feedback
    - `content` string, nullable — Optional feedback content/comment
    - `createdAt` number — Timestamp when feedback was created
    - `agentConfigurationId` string — ID of the agent configuration
    - `agentConfigurationVersion` number — Version of the agent configuration
    - `isConversationShared` boolean — Whether the conversation was shared

## Other responses

- `400` — Invalid request parameters
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Conversation not found
- `500` — Internal server error

---

[API](https://skmtc.dev/dust-tt/apis/dust-api-documentation.md) · [All operations](https://skmtc.dev/dust-tt/apis/dust-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/dust-tt/dust-api-documentation/revisions/aa52b0aedce0/schema)
