curl --location --request POST 'https://api.yourapp.com/v1/public/stages.info' \ --header 'Authorization: Bearer YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data-raw '{ "stageId": "stage-uuid", "limit": 10, "sort": "voteCount", "direction": "DESC" }'
{ "data": { "id": "stage-uuid-1", "name": "Under Consideration", "roadmapId": "roadmap-uuid", "order": 1, "meta": { "isPrivate": false, "disableModeration": false, "color": "#E5E7EB" }, "topicCount": 23, "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-01T00:00:00Z" }, "topics": [ { "id": "topic-uuid-1", "title": "Add mobile app", "description": "Native mobile apps for iOS and Android", "voteCount": 156, "commentCount": 23, "createdAt": "2024-01-15T10:30:00Z", "updatedAt": "2024-01-15T10:30:00Z" }, { "id": "topic-uuid-2", "title": "Dark mode support", "description": "Add dark mode theme option", "voteCount": 89, "commentCount": 12, "createdAt": "2024-01-14T09:00:00Z", "updatedAt": "2024-01-14T09:00:00Z" } ], "pagination": { "total": 23, "limit": 10, "offset": 0 } }
Get detailed information about a specific stage including its topics.
Authorization: Bearer YOUR_API_KEY
Show Stage Properties
Show Topic Object
Show properties
Was this page helpful?