For Agents
Publish, update, and delete changelog posts in Beamer, read user comments and reactions, and pull NPS responses for product feedback. Authenticated with a per-account API key.
Get started with Beamer 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:
"publish a changelog post to Beamer"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Beamer API API.
Publish a changelog post to Beamer when a release ships from CI
Update or delete an existing post when a release is amended or rolled back
Pull user comments on posts to surface qualitative feedback to the product team
Read reaction counts on posts to measure announcement resonance
GET STARTED
Use for: Publish a new release note to Beamer, Update yesterday's changelog post with a correction, Delete a post that was published in error, List the most recent Beamer posts
Not supported: Does not handle in-app widget rendering, email newsletters, or full product analytics — use for changelog post publication and engagement readback only.
Jentic publishes the only available OpenAPI document for Beamer API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Beamer API, keeping it validated and agent-ready. Beamer is a changelog and announcement platform that lets product teams publish updates inside their app via a notification widget. The API exposes posts, comments, reactions, and NPS data across 8 endpoints, supporting both content publication and engagement readback. It is most often used to push release notes from a CI pipeline into Beamer and to pull engagement metrics back into product analytics.
Retrieve NPS scores and verbatim responses collected through the Beamer widget
List all posts to populate a public changelog page from the Beamer source of truth
Patterns agents use Beamer API API for, with concrete tasks.
★ Release-Note Automation from CI
Engineering teams want every production deployment to publish a changelog entry without manual copy-paste. The Beamer API accepts a post creation call from CI with title, body, and category, returning the new post ID for downstream use. Combined with deploy hooks, this turns the release pipeline into the source of truth for the public changelog.
On successful production deploy, call `POST /posts` with the release title and body and write the returned post ID to the deploy log.
Engagement Analytics Pipeline
Product teams want to know which announcements drive comments, reactions, and follow-up support volume. The Beamer API exposes per-post comments and reactions, so a daily job can pull engagement data and join it to product analytics for dashboards on which release notes resonated.
For each post created in the last 7 days, call `GET /posts/{id}/comments` and `GET /posts/{id}/reactions` and write counts to the analytics warehouse.
NPS Reporting Workflow
Customer success teams collect NPS through the Beamer widget and want the verbatim responses funnelled into a CRM or BI tool. The API's NPS endpoint exposes the raw responses so a recurring job can pull and route them to the right destination — for example pushing detractor comments into a support queue.
Call `GET /nps` for the last week and route each response to the CRM with the score, verbatim, and originating user attached.
Agent-Driven Announcement Drafting
An AI agent helping a product manager draft and publish release notes can use Jentic to call the Beamer post creation endpoint after the human approves the copy. The agent never sees the Beamer API key — Jentic injects it at runtime — and the agent reports back with the published post URL.
Take an approved release-note draft and call `POST /posts` via Jentic, then return the post ID and URL to the user.
8 endpoints — jentic publishes the only available openapi specification for beamer api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/posts
List posts
/posts
Create a changelog post
/posts/{id}
Update a post
/posts/{id}
Delete a post
/posts/{id}/comments
Get comments on a post
/posts/{id}/reactions
Get reactions on a post
/nps
Get NPS responses
/posts
List posts
/posts
Create a changelog post
/posts/{id}
Update a post
/posts/{id}
Delete a post
/posts/{id}/comments
Get comments on a post
/posts/{id}/reactions
Three things that make agents converge on Jentic-routed access.
Credential isolation
Beamer API keys are stored encrypted in the Jentic vault. Agents call Beamer operations via Jentic and the platform injects the `Beamer-Api-Key` header at runtime — the raw key never enters the agent's prompt.
Intent-based discovery
Agents search Jentic by intent (e.g. 'publish a changelog post' or 'get NPS responses') and Jentic returns the matching Beamer operation with its input schema.
Time to first call
Direct Beamer integration: a few hours to wire CI publication and engagement readback. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Canny
Customer feedback and roadmap platform that also publishes changelog entries.
Choose Canny when announcements need to live alongside a public roadmap and feedback board rather than in a standalone changelog.
Ghost
Publishing platform that can host a public changelog as a blog or newsletter.
Choose Ghost when changelog content should also be sent as an email newsletter to subscribers, not just an in-app widget.
Pendo
Product analytics and in-app guides paired with changelog tools to measure feature adoption alongside announcements.
Use Pendo alongside Beamer when you want to correlate changelog announcements with feature usage and adoption funnels.
Specific to using Beamer API API through Jentic.
Why is there no official OpenAPI spec for Beamer API?
Beamer does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Beamer 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 Beamer API use?
The Beamer API uses an API key passed in the `Beamer-Api-Key` header. Through Jentic, the key is stored encrypted in the vault and injected at execution time so agents never see the raw value.
Can I publish a changelog post automatically from CI with the Beamer API?
Yes. Call `POST /posts` from your CI pipeline with the release title and body, and store the returned post ID for traceability.
Can I read user reactions on a Beamer post?
Yes. Call `GET /posts/{id}/reactions` to retrieve reaction data for a specific post — useful for measuring announcement resonance.
How do I pull NPS responses through Jentic?
Search Jentic for `get NPS responses from Beamer`, load the schema for `GET /nps`, and execute. Jentic injects the `Beamer-Api-Key` from the vault.
Does the Beamer API send the in-app widget itself?
No. The widget is rendered by Beamer's client-side script in your app. The API publishes content the widget displays and reads back engagement, but it does not deliver the widget UI.
Get reactions on a post
/nps
Get NPS responses