For Agents
Read new feedback posts, create posts, change post status, and fetch changelogs from a Featurebase workspace.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Featurebase API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Featurebase API API.
Identify the authenticated Featurebase user via /zapier/me
Pull new posts created since the last poll
Pull new comments and category creations for incremental sync
Create posts on behalf of an end user with /zapier/create_post
GET STARTED
Use for: I need to create a Featurebase post from a Slack message, List new feature requests posted since yesterday, Change the status of a Featurebase post to 'in progress', Get the latest published changelogs for our product
Not supported: Does not handle voting analytics, board configuration, or user provisioning — use for Featurebase post creation, status updates, and changelog reads only.
Jentic publishes the only available OpenAPI document for Featurebase API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Featurebase API, keeping it validated and agent-ready. Featurebase is a feedback, roadmap, and changelog tool used by SaaS teams to collect feature requests and broadcast releases. This Zapier-style API exposes the operations needed to read new posts and comments, create posts on behalf of users, change a post's status, and pull changelog entries — enough surface to mirror Featurebase activity into another system or post user feedback from upstream channels.
Move a post through workflow states with /zapier/change_post_status
Retrieve published changelog entries for release notifications
Patterns agents use Featurebase API API for, with concrete tasks.
★ Feedback Capture from Support Tickets
Customer support teams pipe escalated feature requests from Zendesk or Intercom into Featurebase by calling POST /zapier/create_post with the user's email and request text. Featurebase deduplicates, scores, and exposes the request on the public roadmap so PMs can prioritise without leaving the feedback tool.
When a Zendesk ticket is tagged 'feature-request', call POST /zapier/create_post with the ticket title, body, and requester email.
Roadmap Status Sync
Engineering teams keep Featurebase status fields aligned with their issue tracker. A scheduled job calls GET /zapier/new_posts to detect new feedback and POST /zapier/change_post_status to flip a post to 'in progress' when the linked Jira ticket starts, so external customers see real-time progress on the public roadmap.
List new posts via GET /zapier/new_posts, match each to a Jira issue, and call POST /zapier/change_post_status with the matching status.
Agent-Powered Feedback Triage
An AI agent reading customer conversations across Slack, Intercom, and email can use Jentic to discover Featurebase's create_post and change_post_status operations, file structured feedback on the customer's behalf, and update statuses as engineering ships fixes — with the Featurebase API key staying inside the Jentic vault.
Use Jentic to search 'create a featurebase post' and execute POST /zapier/create_post with the consolidated feedback summary and reporter email.
7 endpoints — jentic publishes the only available openapi specification for featurebase api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/zapier/create_post
Create a new feedback post
/zapier/change_post_status
Change status of a post
/zapier/new_posts
List newly created posts
/zapier/new_comment
List newly created comments
/zapier/get_changelogs
Retrieve published changelogs
/zapier/me
Get current authenticated user
/zapier/create_post
Create a new feedback post
/zapier/change_post_status
Change status of a post
/zapier/new_posts
List newly created posts
/zapier/new_comment
List newly created comments
/zapier/get_changelogs
Retrieve published changelogs
Three things that make agents converge on Jentic-routed access.
Credential isolation
Featurebase API keys are stored encrypted in the Jentic vault. Agents receive a scoped credential reference, so the X-API-Key value never enters agent or LLM context.
Intent-based discovery
Agents search by intent (e.g. 'create a featurebase post') and Jentic returns the matching Zapier-style endpoint with its input schema.
Time to first call
Direct Featurebase integration: half a day for the simple Zapier endpoints. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Canny
Established feedback and roadmap tool with deeper integrations catalogue
Choose Canny when you need richer voting analytics or existing Salesforce and Intercom integrations.
Savio
Feedback aggregation focused on customer-account context
Choose Savio when feedback needs to be tied to MRR or customer health rather than public voting.
Aha!
Strategic roadmap planning that pairs with Featurebase's customer-facing feedback intake
Use Aha! to manage internal roadmap strategy while Featurebase collects and exposes external feedback.
Specific to using Featurebase API API through Jentic.
Why is there no official OpenAPI spec for Featurebase API?
Featurebase does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Featurebase API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Featurebase API use?
Featurebase uses an API key passed in the X-API-Key header. Through Jentic the raw key is held in the vault and Jentic injects the header at call time so the agent never sees it.
Can I create posts on behalf of users with the Featurebase API?
Yes. POST /zapier/create_post accepts a title, body, and submitter email so a backend or agent can file feedback on behalf of an end user.
What are the rate limits for the Featurebase API?
Featurebase does not document numeric rate limits in this Zapier-style spec. Apply backoff on 429 responses and avoid tight polling loops on /zapier/new_posts.
How do I change a post's status with Featurebase through Jentic?
Run pip install jentic, search 'change featurebase post status', load POST /zapier/change_post_status, and execute it with the post ID and target status.
Does the Featurebase API support pulling changelog entries?
Yes. GET /zapier/get_changelogs returns published changelog entries that can be reposted to release-notes channels or fed into a customer email.
/zapier/me
Get current authenticated user