For Agents
Create roadmap items, capture insights, manage statuses and fields, and pull workspace data from the airfocus product management platform.
Get started with airfocus API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"create an airfocus roadmap item"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with airfocus API API.
Create, update, and delete items (features, ideas, tasks) within a workspace
Define custom fields on a workspace to capture business-specific item attributes
List statuses and move items through prioritization stages
Capture insights from customer feedback and link them to roadmap items
GET STARTED
Use for: Create a new roadmap item in a workspace, I want to add an insight from customer feedback, List all items in a specific workspace, Update the status of a feature in airfocus
Not supported: Does not handle engineering issue tracking, time logging, or document collaboration — use for roadmap items, prioritization, and customer feedback insights only.
Jentic publishes the only available OpenAPI specification for airfocus API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for airfocus API, keeping it validated and agent-ready. airfocus is a modular product management platform combining roadmaps, prioritization, and customer feedback. The API exposes 20 endpoints across workspaces, items (features, ideas, and tasks), custom fields, statuses, voting portals, insights, and team members. Authentication is via bearer token issued from the airfocus account settings.
List and inspect voting portals where customers prioritize requests
Pull team member rosters for assignment workflows
Patterns agents use airfocus API API for, with concrete tasks.
★ Customer Feedback to Roadmap
Capture customer feedback as an insight, then promote it to a roadmap item once it has enough signal. POST /api/workspaces/{workspace_id}/insights records the raw feedback, and creating an item via POST /api/workspaces/{workspace_id}/items places it on the prioritized backlog with linkage back to the source insight.
Create an insight in workspace ws_42 with the customer quote 'Need bulk export', then create a feature item titled 'Bulk CSV export' linked to that insight
External Tool Sync
Sync items between airfocus and other tools (Jira, GitHub, Linear) by listing workspace items, mapping fields, and updating status as work moves. GET /api/workspaces/{workspace_id}/items returns the current backlog, /fields exposes custom field definitions, and PUT on items keeps statuses aligned with engineering progress.
List items in workspace ws_42 with status 'In Progress', map them to Jira issue keys via the custom field 'jira_key', and update each airfocus item with the latest Jira status
Voting Portal Insight Aggregation
Aggregate customer votes from a public airfocus portal into product analytics. GET /api/workspaces/{workspace_id}/portals lists active portals, then list portal-linked insights and items to surface the most-requested ideas in an internal dashboard.
List portals for workspace ws_42, then fetch the top 10 insights by vote count and post them as a weekly digest to a Slack channel
AI Agent Roadmap Assistant
An agent embedded in a product team chat can capture spoken or written feedback, create insights, and propose roadmap items via Jentic. The bearer token stays in the vault and only scoped airfocus operations are exposed to the agent.
Search Jentic for 'create an airfocus item', load the POST /api/workspaces/{workspace_id}/items schema, and create a feature in workspace ws_42 titled 'OAuth login' with description from the conversation context
20 endpoints — jentic publishes the only available openapi specification for airfocus api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/workspaces
List workspaces
/api/workspaces/{workspace_id}/items
List items in a workspace
/api/workspaces/{workspace_id}/items
Create an item
/api/workspaces/{workspace_id}/items/{item_id}
Update an item
/api/workspaces/{workspace_id}/insights
List insights
/api/workspaces/{workspace_id}/insights
Create an insight
/api/members
List team members
/api/workspaces
List workspaces
/api/workspaces/{workspace_id}/items
List items in a workspace
/api/workspaces/{workspace_id}/items
Create an item
/api/workspaces/{workspace_id}/items/{item_id}
Update an item
/api/workspaces/{workspace_id}/insights
List insights
Three things that make agents converge on Jentic-routed access.
Credential isolation
airfocus bearer tokens are stored encrypted in the Jentic vault. Jentic adds the Authorization header at call time, so credentials never enter the agent's context.
Intent-based discovery
Agents search Jentic by intent (e.g. 'create an airfocus item') and Jentic returns the matching operation with its input schema directly.
Time to first call
Direct airfocus integration: 1-2 days for auth, workspace scoping, and field schema mapping. Through Jentic: under 1 hour.
Alternatives and complements available in the Jentic catalogue.
monday.com API
Work OS with flexible boards covering roadmaps, tasks, and CRM workflows
Choose monday.com when one platform must serve roadmap, project, and operations work, not just product roadmaps
Aha! API
End-to-end product roadmap with strategy, releases, and ideas
Choose Aha! when strategy linking and release planning are core to the workflow
Linear API
Sync airfocus prioritized items into Linear for engineering execution
Use Linear alongside airfocus when product owns the roadmap and engineering owns the issue tracker
Asana API
Push airfocus tasks into Asana projects for cross-functional execution
Use Asana alongside airfocus when non-engineering teams pick up resulting tasks
Specific to using airfocus API API through Jentic.
Why is there no official OpenAPI spec for airfocus API?
airfocus does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call airfocus 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 airfocus API use?
airfocus authenticates via HTTP bearer tokens generated from the account settings page. Jentic stores the token encrypted in the vault and applies the Authorization header on every call, so the agent never handles the raw token.
Can I create a roadmap item with the airfocus API?
Yes. POST /api/workspaces/{workspace_id}/items creates an item with title, description, status, and any custom field values defined on the workspace. Items can later be updated with PUT or removed with DELETE.
What are the rate limits for the airfocus API?
The spec does not declare formal rate limits. Treat the API as an interactive product-management surface; for bulk imports, paginate item creation rather than firing concurrent requests against a single workspace.
How do I capture customer feedback as an insight with the airfocus API through Jentic?
Run pip install jentic, search Jentic for 'create airfocus insight', load the schema for POST /api/workspaces/{workspace_id}/insights, then execute with the workspace ID and the feedback content. Jentic applies the bearer token automatically.
Can I list voting portals via the airfocus API?
Yes. GET /api/workspaces/{workspace_id}/portals returns the active voting portals for that workspace, suitable for showing aggregated request counts in an internal dashboard.
/api/workspaces/{workspace_id}/insights
Create an insight
/api/members
List team members