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.
| Feature | Votes | MRR | Status |
|---|---|---|---|
| Dark mode | 127 | $12,400 | In Progress |
| Slack integration | 89 | $8,200 | Planned |
| Custom domains | 67 | $15,300 | Shipped |
| API rate limiting dashboard | 45 | $6,100 | Under 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 MRRList & 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"
}
]
}