For Agents
Authenticate, manage boards and features, and read comments and likes from a Feature Watch workspace.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Feature Watch 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 Feature Watch API API.
Authenticate via /login and inspect the current user via /me
List boards and the features attached to a specific board
Create and retrieve features programmatically
Pull comments, likes, and current state metadata for triage
GET STARTED
Use for: I need to log in to Feature Watch and obtain a token, List all boards in my Feature Watch workspace, Create a new feature on a Feature Watch board, Retrieve all features attached to a specific board
Not supported: Does not handle billing, customer support tickets, or roadmap planning views — use for Feature Watch board, feature, and webhook operations only.
Jentic publishes the only available OpenAPI document for Feature Watch API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Feature Watch API, keeping it validated and agent-ready. Feature Watch is a feedback and feature-tracking tool that organises product ideas into boards, attaches comments and likes, and pushes status updates via webhooks. The API exposes 17 endpoints covering authentication, board and feature CRUD, comments, likes, and webhook management so a product team can mirror its feedback workflow into other systems or have agents file feedback automatically.
Manage webhooks that broadcast feature activity to other systems
Patterns agents use Feature Watch API API for, with concrete tasks.
★ Centralised Feedback Triage
Product managers use Feature Watch to centralise feature requests submitted by support, sales, and customers. Calling GET /boards and GET /board/{id}/features lets a triage tool surface this week's new requests grouped by board, while GET /comments and GET /likes expose qualitative and quantitative signal so the PM can prioritise without clicking through the UI.
List boards via GET /boards, then for each board call GET /board/{id}/features and aggregate counts of likes and comments for the week.
Agent-Filed Feature Requests
Customer-facing agents pick up feature requests in chat and need to file them in Feature Watch without leaving context. POST /features (or POST /add_feature) accepts a title and description so the agent can record the request and respond to the customer with a tracking link.
Call POST /features with the feature title, description, and board ID drawn from the customer conversation context.
Webhook-Driven Roadmap Notifications
When a feature changes state, downstream systems need to know. Feature Watch's webhooks endpoints let a workflow register a URL that fires on activity, so a release-notes service or Slack notifier can react to status changes without polling.
Register a webhook against the Feature Watch board so the release-notes service receives updates when features move to 'shipped'.
Agent-Driven Feedback Sync
An AI agent watching support tickets, tweets, and Slack mentions can use Jentic to discover Feature Watch's authentication, features, and webhooks operations, login once, file consolidated requests, and register a webhook back to a notification service — keeping the bearer token inside the Jentic vault.
Use Jentic to search 'create a feature watch feature' and execute POST /features with the consolidated request body.
17 endpoints — jentic publishes the only available openapi specification for feature watch api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/login
Authenticate and receive a bearer token
/boards
List all boards
/board/{id}/features
List features on a board
/features
Create a new feature
/feature/{id}
Retrieve a specific feature
/comments
Retrieve feature comments
/login
Authenticate and receive a bearer token
/boards
List all boards
/board/{id}/features
List features on a board
/features
Create a new feature
/feature/{id}
Retrieve a specific feature
Three things that make agents converge on Jentic-routed access.
Credential isolation
Feature Watch bearer tokens and API keys are stored encrypted in the Jentic vault. Agents receive a scoped credential reference and Jentic injects the Authorization or X-API-Key header at execution time.
Intent-based discovery
Agents search by intent (e.g. 'create a feature watch feature') and Jentic returns the matching operation with its input schema, so the agent calls the right endpoint without browsing the 17-path catalogue.
Time to first call
Direct Feature Watch integration: 1 day for auth, board listing, and webhook setup. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Canny
Mature feedback and roadmap platform with deeper analytics
Choose Canny when you need built-in voting analytics and richer integrations than Feature Watch offers.
Featurebase
Feedback and roadmap tool with a Zapier-style API surface
Choose Featurebase when the simpler Zapier-style endpoint set covers your automation needs.
Aha!
Strategic roadmap tool that pairs with Feature Watch's customer-facing collection
Use Aha! for internal strategic planning while Feature Watch handles customer-visible feature requests.
Specific to using Feature Watch API API through Jentic.
Why is there no official OpenAPI spec for Feature Watch API?
Feature Watch does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Feature Watch 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 Feature Watch API use?
The API supports a bearer token obtained via POST /login and an X-API-Key header. Through Jentic the credential is stored in the vault and injected at call time so the raw token never enters agent context.
Can I create features programmatically with the Feature Watch API?
Yes. POST /features accepts a title, description, and board association, and POST /add_feature provides an alternative add operation for legacy clients.
What are the rate limits for the Feature Watch API?
Feature Watch does not publish numeric rate limits in the spec. Apply exponential backoff on 429 responses and cache list results between polls to reduce request volume.
How do I list features on a board through Jentic?
Run pip install jentic, search 'list feature watch board features', load GET /board/{id}/features, and execute it with the target board ID to receive the feature list.
Does the Feature Watch API support webhooks?
Yes. The Webhooks tag exposes endpoints for registering callback URLs that receive feature activity events, removing the need to poll for changes.
/comments
Retrieve feature comments