Yes. Userorbit has a public API for working with feedback, announcements, roadmap topics, help center articles, subscribers, projects, tags, and related resources.
How authentication works
Create an API key from Settings > API Keys. API requests use both your API key and Team ID:
Authorization: Bearer YOUR_API_KEY
x-team-id: YOUR_TEAM_ID
Content-Type: application/jsonHow requests are structured
All public API operations are sent as POST requests to action endpoints:
POST https://api.userorbit.com/api/v1/feedbacks.listSend any parameters as a JSON request body. For example, to list feedback:
curl -X POST https://api.userorbit.com/api/v1/feedbacks.list -H "Authorization: Bearer YOUR_API_KEY" -H "x-team-id: YOUR_TEAM_ID" -H "Content-Type: application/json" -d '{}'Common resources
Feedback:
feedbacks.list,feedbacks.create,feedbacks.updateAnnouncements:
announcements.list,announcements.create,announcements.updateRoadmaps:
roadmaps.list,topics.list,topics.createHelp Center:
articles.list,articles.create,articles.update
If you need help choosing the right endpoint, contact support with the workflow you want to automate.