Skip to main content
POST

Authentication

This endpoint requires API key authentication via the Authorization header.

Query Parameters

string
default:"newest"
Sorting method:
  • newest - Most recently updated (default)
  • top - Most votes overall
  • trending - Most activity in last 7 days (votes + comments)
string
Filter by status:
  • in_review
  • in_progress
  • planned
  • completed
  • closed
string
Filter by feedback board UUID
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. 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 text field
  • Pagination is recommended for large datasets
  • Vote and comment counts are calculated in real-time
  • Default sort is by updatedAt DESC (most recently updated)