Feedback postsList

List feedback posts

Paginated list of feedback posts with optional board, status, and full-text search filters.

Returns a paginated list of feedback posts for the authenticated organization. Filterable by board, status, and a full-text search over title and description.

Endpoint

POST https://api.productbridge.io/api/external/v1/feedback-posts/list

Arguments

body
api_keystring
Required

Your organization's public API key. See Authentication.

body
board_idstring

Filter to posts on a specific feedback board. Pass the board's UUID.

body
status_idstring

Filter to posts in a specific status. Pass the status UUID.

body
limitinteger

Number of items per page. Min 1, max 100. Defaults to 25.

body
cursorstring

Opaque pagination cursor returned by the previous page. Omit for the first page.

Filter limitations in v1. Tag and author filters and Canny-style sort options (newest / oldest / score / status_changed / trending) are not yet supported. The list is always sorted by newest-first. Filter by tag client-side after retrieving the page.

Returns

The standard cursor-paginated envelope.

{
  "items": [ /* feedback post objects */ ],
  "has_next_page": true,
  "cursor": "MjU"
}

Example request

curl -X POST https://api.productbridge.io/api/external/v1/feedback-posts/list \
  -H 'Content-Type: application/json' \
  -d '{
    "api_key": "pb_YOUR_PUBLIC_API_KEY",
    "board_id": "553c3ef8-b8cd-cd15-01ba-12341234abcd",
    "search": "dark mode",
    "limit": 25
  }'

Example response

{
  "items": [
    {
      "id": "aa3c3ef8-b8cd-cd15-01ba-postpost0001",
      "title": "Add dark mode to the dashboard",
      "description": "It would be great to have a dark theme for late-night sessions.",
      "slug": "add-dark-mode-to-the-dashboard",
      "board_id": "553c3ef8-b8cd-cd15-01ba-12341234abcd",
      "author_id": "bb3c3ef8-b8cd-cd15-01ba-useruser0001",
      "owner_id": null,
      "status_id": "883c3ef8-b8cd-cd15-01ba-status000001",
      "category_id": "553c3ef8-b8cd-cd15-01ba-12bb12bb12bb",
      "eta": null,
      "moderation_status_code": "accepted",
      "created_at": "2026-04-15T10:30:00.000Z",
      "updated_at": "2026-04-20T12:05:11.000Z"
    }
  ],
  "has_next_page": false,
  "cursor": null
}

Errors

StatusBodyCause
401{"detail":{"error":"invalid api_key"}}Missing / unknown / inactive api_key.
422Validation error envelopelimit out of range (must be 1–100), or non-UUID values for board_id / status_id.

See Errors and Pagination for the cursor pattern.