Appearance
List Feedback
Retrieve customer feedback across your products.
GET /v1/feedbacksQuery Parameters
| Parameter | Type | Description |
|---|---|---|
page | number | Page number (default: 1) |
per_page | number | Items per page (default: 20, max: 100) |
product_id | string | Filter by product ID |
sentiment | string | Filter by sentiment, e.g. positive, negative |
tag_id | string | Only feedback assigned this tag (ftag_…) |
Response
json
{
"data": [
{
"id": "fbk_xxx",
"productId": "prd_xxx",
"productName": "My Plugin",
"sentiment": "positive",
"rating": 5,
"message": "Love the new export feature!",
"contextType": "feature",
"contextValue": "export_pdf",
"site": "customer-site.com",
"email": "[email protected]",
"tags": [
{ "id": "ftag_xxx", "name": "feature-request", "color": "#22c55e" }
],
"createdAt": "2026-06-12T09:58:00Z"
}
],
"meta": {
"page": 1,
"perPage": 20,
"total": 38,
"totalPages": 2
}
}Example
bash
curl -X GET "https://api.packedge.dev/v1/feedbacks?sentiment=negative" \
-H "Authorization: Bearer pk_your_api_key"