Roadmap
Roadmap Tracker
Query public features, development status, and completion statistics.
Description
Transparency is a core tenet of VeriWorkly. The Roadmap API exposes our internal development pipeline directly to the public. This allows the community (and our frontend client) to query upcoming features, track active progress, and view historical completion data.
Unlike the GitHub proxy (which fetches from an external source), the Roadmap data is managed internally within our PostgreSQL database, ensuring zero-latency responses and highly relational queries.
Query Parameters & Pagination
Because the roadmap will grow indefinitely over the lifecycle of the project, the list endpoint is heavily optimized for large datasets.
- Offset Pagination: All lists are paginated. You must use the
limit(max 50) andoffsetparameters to traverse the data. The response will always include ahasMoreboolean to inform your UI if a "Load More" button is needed. - Granular Filtering: You can filter the pipeline strictly by its lifecycle
status(todo,in-progress,done). - Chronological Sorting: Support for time-series sorting via
newest,oldest, orrecently-completed.
Authentication
| Method | Access Level | Requirement |
|---|---|---|
GET | Public | None. No session cookies are required to fetch features or statistics. |
Available Endpoints
Get/roadmap
List Roadmap Features
Fetch a paginated, filterable list of features.
Get
/roadmap/statsFetch Roadmap Stats
Retrieve metadata and completion rates.
Get/roadmap/{id}
Get Feature Details
Fetch deep details for a specific item.