SaaS

Feature Requests Guide

Collect and manage feature requests from users. Track votes and prioritize your roadmap based on customer feedback.

Collect Ideas

Users submit feature requests through tickets or a dedicated portal.

Vote & Prioritize

Let customers vote on requests to surface the most wanted features.

Track by Revenue

See total MRR behind each request to prioritize high-value features.

Status Updates

Notify users when their requested feature ships.

Feature Request Board

See what your customers want most.

FeatureVotesMRRStatus
Dark mode127$12,400In Progress
Slack integration89$8,200Planned
Custom domains67$15,300Shipped
API rate limiting dashboard45$6,100Under Review

Feature Requests API

Manage feature requests programmatically.

Create Feature Request

POST /v1/feature-requests
{
  "title": "Dark mode",
  "description": "Add a dark theme option for the dashboard",
  "customer_email": "[email protected]",
  "customer_mrr": 99
}

Vote on Request

POST /v1/feature-requests/fr_xxx/vote
{
  "customer_email": "[email protected]",
  "customer_mrr": 49
}

// Voting adds to both vote count AND total MRR

List & Filter Requests

GET /v1/feature-requests?
  status=planned&
  sort=mrr&
  order=desc

// Response includes vote count and total MRR
{
  "items": [
    {
      "id": "fr_xxx",
      "title": "Dark mode",
      "votes": 127,
      "total_mrr": 12400,
      "status": "in_progress"
    }
  ]
}

Build What Customers Want

Prioritize your roadmap with real customer data.