Management
List Feedback (Public)
List feedback with advanced filtering and sorting. Returns feedback from public boards.
POST
Authentication
This endpoint requires API key authentication via theAuthorization header.
Query Parameters
string
default:"newest"
Sorting method:
newest- Most recently updated (default)top- Most votes overalltrending- Most activity in last 7 days (votes + comments)
string
Filter by status:
in_reviewin_progressplannedcompletedclosed
string
Filter by feedback board UUID
string
Search in feedback text (case-insensitive)
number
default:"20"
Maximum number of results (1-100)
number
default:"0"
Number of results to skip for pagination
Response
array
Array of feedback objects
object
Sorting Algorithms
Top
Sorts by total vote count (all-time). Use for “most popular” or “most requested” views.Trending
Sorts by recent activity (votes + comments in last 7 days). Use for “hot” or “trending now” views.Newest
Sorts by most recent update. Use for “latest feedback” or chronological views.Use Cases
- Public Feedback Portal: Display all feedback to users
- Feature Voting Board: Show top-voted features
- Trending Ideas: Highlight gaining traction
- Search: Find specific feedback
- Board-Specific Views: Filter by board for categorization
Notes
- Only returns feedback from public boards
- Archived feedback is excluded
- Search is case-insensitive and searches the
textfield - Pagination is recommended for large datasets
- Vote and comment counts are calculated in real-time
- Default sort is by
updatedAt DESC(most recently updated)

