Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / CRM / Acute API
Acute API logo

Getacute Acute API

Agent-ready OpenAPI document · curated by JenticCRMCustomer Successbearer4 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Read user feedback cards and conversations from Acute, and link feedback to GitHub issues or Intercom tags so product and support teams can triage signal automatically.

Use for: List all feedback cards in Acute, Retrieve feedback conversations from the last 30 days, Link a GitHub issue to a piece of feedback, Tag a feedback card in Intercom

Not supported: Does not handle public feedback voting, in-app widget delivery, or roadmap publishing - use for reading feedback cards and linking them to GitHub or Intercom only.

Jentic publishes the only available OpenAPI specification for Acute API, keeping it validated and agent-ready. Acute is a customer feedback management tool that helps SaaS teams capture, organise, and triage user-submitted feedback alongside Intercom conversations and GitHub issues. The API exposes feedback cards and conversations for retrieval and provides Intercom and GitHub integration helpers, so external automations can read feedback and link it to engineering tickets. It is most often used to push Acute feedback into a data warehouse or a roadmap tool.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Acute API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Acute 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.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgetacute.io%2Facute" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fgetacute.io%2Facute" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic 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.

Capabilities

What an agent can do with Acute API.

Retrieve all feedback cards captured in Acute and forward them to a roadmap or data warehouse

List feedback conversations to triage open user discussions in bulk

Generate an Intercom tag from an Acute card so support agents can route the conversation

Link a GitHub issue to an Acute feedback card so engineering can track the request

Sync customer feedback into product analytics for prioritisation

Use Cases

Patterns agents use Acute API for, with concrete tasks.

★ Feedback-to-GitHub Linking

Product teams want every piece of upvoted user feedback to map to an engineering ticket so progress is traceable. The Acute API lets a workflow create a GitHub issue from a feedback card, then link the issue back to the card so the loop is closed when the issue ships. This eliminates manual copy-paste between Acute and GitHub.

For a feedback card with the highest vote count this week, call `POST /zapier/cards/add-github-issue` with the issue URL and confirm the link is recorded.

Feedback Triage in Intercom

Support teams using Intercom want to tag conversations that originated from Acute feedback so they can be routed to the right team. The API generates an Intercom tag for an Acute card, allowing automation to apply consistent labels across both tools and reducing duplicate triage work.

Call `POST /intercom/cards/create-tag` for each new feedback card and apply the returned tag to the linked Intercom conversation.

Feedback Data Warehouse Export

Analytics teams need feedback in their warehouse alongside product usage data so they can correlate complaints with churn or feature adoption. The Acute API exposes cards and conversations in a structured form, so a scheduled job can pull all records and load them into a destination like BigQuery or Snowflake without scraping the UI.

Call `GET /zapier/cards` and `GET /zapier/conversations`, normalise the records, and load them into a warehouse table partitioned by created date.

Agent-Driven Feedback Reporting

An AI agent embedded in a product manager's workspace can answer 'what are users asking for this week?' by pulling Acute cards through Jentic and summarising them. The agent uses Jentic to discover the cards endpoint, calls it without handling the bearer token directly, and produces a ranked list of themes.

Pull all feedback cards via Jentic's Acute integration, group by theme, and return a top-10 list with vote counts.

Key Endpoints

4 endpoints — jentic publishes the only available openapi specification for acute api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/zapier/cards

Retrieve all feedback cards

GET

/zapier/conversations

Retrieve all feedback conversations

POST

/zapier/cards/add-github-issue

Link a GitHub issue to a feedback card

POST

/intercom/cards/create-tag

Generate an Intercom tag for a feedback card

GET

/zapier/cards

Retrieve all feedback cards

GET

/zapier/conversations

Retrieve all feedback conversations

POST

/zapier/cards/add-github-issue

Link a GitHub issue to a feedback card

POST

/intercom/cards/create-tag

Generate an Intercom tag for a feedback card

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Acute API by hand means setting up its bearer token, attaching the Authorization header on every call, and routing card, conversation, and integration calls to the right paths yourself. Through Jentic you install once, import Acute from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

Acute's operations like /zapier/cards/add-github-issue and /intercom/cards/create-tag take their target in the request body rather than the URL path, so scope the agent to the operations it needs, such as reading feedback cards and linking them to a GitHub issue. You choose the operations it may call, so actions like creating an Intercom tag are not included unless you add them.

Credential management

Credential isolation

Your Acute bearer token is stored once, encrypted, by your own Jentic One instance and injected into the Authorization header at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list customer feedback cards' or 'link feedback to a GitHub issue', and Jentic returns the matching Acute operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Canny

→

Customer feedback and roadmap platform with public boards and richer voting workflows.

Choose Canny when you need a public-facing feedback board with explicit voting and a roadmap view rather than internal triage.

Alternative

Pendo Feedback

Feedback module within the Pendo product analytics platform.

Choose Pendo Feedback when feedback must sit alongside product analytics, NPS, and in-app guides in one platform.

Complementary

Freshdesk

→

Helpdesk and ticketing platform commonly paired with feedback tools to convert support tickets into product input.

Use Freshdesk alongside Acute when support tickets are the upstream source of feedback and you want to triage there before promoting items into Acute.

FAQs

Specific to using Acute API through Jentic.

Why is there no official OpenAPI spec for Acute API?

Acute does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Acute API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Acute API use?

The Acute API uses HTTP Bearer authentication. Through Jentic, the bearer token is stored encrypted and injected at execution time - agents do not see the raw token.

Can I link a GitHub issue to a feedback card with the Acute API?

Yes. Call `POST /zapier/cards/add-github-issue` with the card identifier and GitHub issue URL to attach the issue to the card.

Can I list all feedback conversations through the Acute API?

Yes. Call `GET /zapier/conversations` to retrieve all feedback conversations. The endpoint returns conversation records suitable for export or triage.

How do I tag an Intercom conversation from an Acute card via Jentic?

Search Jentic for `tag an Intercom conversation from Acute feedback`, load the schema for `POST /intercom/cards/create-tag`, and execute with the card identifier. Jentic handles the bearer token automatically.

Does the Acute API support submitting new feedback or upvotes?

No. The current API surface is read-oriented for cards and conversations and integration-helper for GitHub and Intercom. New feedback submission and voting happen through the Acute UI or product widget.

Can I limit what my agent is allowed to do with the Acute API?

Yes. Because you run Jentic One yourself, your own rules decide which Acute operations and credentials the agent may use. You can allow it to only read feedback with GET /zapier/cards and GET /zapier/conversations, while withholding write actions like POST /zapier/cards/add-github-issue or POST /intercom/cards/create-tag until you explicitly add them. Since these operations take their target in the request body rather than the path, you scope the agent at the operation level to exactly the calls it needs.

GET STARTED

Start building with Acute API

Explore with Jentic One
View OpenAPI Document