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) and offset parameters to traverse the data. The response will always include a hasMore boolean 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, or recently-completed.

Authentication

MethodAccess LevelRequirement
GETPublicNone. No session cookies are required to fetch features or statistics.

Available Endpoints


On this page

Edit on GitHub