Skip to content

List Feedback

Retrieve customer feedback across your products.

GET /v1/feedbacks

Query Parameters

ParameterTypeDescription
pagenumberPage number (default: 1)
per_pagenumberItems per page (default: 20, max: 100)
product_idstringFilter by product ID
sentimentstringFilter by sentiment, e.g. positive, negative
tag_idstringOnly 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"