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 / Productivity / Hedy API
Hedy API logo

Hedy Bot Hedy API

Agent-ready OpenAPI document · curated by JenticProductivityCollaborationapiKey4 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

List Hedy AI meeting sessions and retrieve their transcripts, summaries, and AI-generated highlights across 4 read-only endpoints.

Use for: List my Hedy meeting sessions from the last 7 days, Get the transcript and summary for a specific Hedy meeting, Find all action items captured across recent meetings, Retrieve the full content of a single Hedy highlight

Not supported: Does not record audio, transcribe live calls, or create sessions - use for read-only access to existing Hedy sessions and highlights only.

Jentic publishes the only available OpenAPI specification for Hedy API, keeping it validated and agent-ready. Hedy is an AI meeting assistant; this API exposes recorded meeting sessions and the AI-extracted highlights derived from them. Through four read-only endpoints, agents can list and inspect sessions, retrieve transcripts and summaries, and pull individual highlights such as decisions, action items, and questions. Authentication is via an API key passed in the X-API-Key header.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Hedy API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Hedy 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%2Fhedy.bot%2Fhedy-bot" | 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%2Fhedy.bot%2Fhedy-bot" | 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 Hedy API.

List recent Hedy meeting sessions, paginated and filterable by date, via GET /sessions

Retrieve a single session's transcript and summary by id via GET /sessions/{sessionId}

List AI-generated highlights (decisions, action items, questions) across sessions via GET /highlights

Fetch the full text and source-session reference of one highlight via GET /highlights/{highlightId}

Filter highlights to a specific session or category for downstream summarization workflows

Use Cases

Patterns agents use Hedy API for, with concrete tasks.

★ Weekly Status Email Generation

An assistant compiles a weekly status email by pulling the past week's Hedy highlights and grouping them into decisions, action items, and open questions. The /highlights endpoint returns highlights with their source session reference, so the assistant can attribute each item to the meeting it came from. End-to-end the workflow runs in seconds.

Call GET /highlights filtered to the last 7 days and group the results into decisions, action items, and questions

CRM Meeting Note Sync

A sales operations workflow syncs Hedy meeting summaries into CRM contact records. For each new session, the workflow calls /sessions/{sessionId} to fetch the summary and key highlights, then writes them onto the matched contact. No transcription or summarisation is needed locally - Hedy delivers the structured output.

For each session in GET /sessions from the last 24 hours, retrieve the summary via GET /sessions/{sessionId} and append it to the matching CRM contact

Searchable Meeting Memory

A team builds an internal search tool over their meeting history by indexing Hedy sessions and highlights into a vector store. The /sessions and /highlights endpoints supply the raw text content to embed; the agent only handles the index and retrieval layer.

Iterate GET /sessions, fetch each session's transcript via GET /sessions/{sessionId}, and embed the text into a vector store

AI Agent Meeting Assistant

A Claude or GPT assistant answers 'what did we decide in yesterday's meeting?' by calling Hedy through Jentic. The agent searches by intent, loads the /highlights operation, filters by date and category, and returns a concise answer with citations to specific session ids.

Search Jentic for 'list meeting highlights', load the operation, filter to yesterday's date, and return the action items with their source session ids

Key Endpoints

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

METHOD

PATH

DESCRIPTION

GET

/sessions

List meeting sessions

GET

/sessions/{sessionId}

Get session transcript and summary

GET

/highlights

List AI-generated highlights across sessions

GET

/highlights/{highlightId}

Get a single highlight's content and source session

GET

/sessions

List meeting sessions

GET

/sessions/{sessionId}

Get session transcript and summary

GET

/highlights

List AI-generated highlights across sessions

GET

/highlights/{highlightId}

Get a single highlight's content and source session

Why Jentic?

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

Setup

Setup

Wiring Hedy by hand means passing your API key as a bearer value in the Authorization header on every read call. Through Jentic you install once, import the Hedy API from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

Hedy puts the resource id in the URL path (/sessions/{sessionId}, /highlights/{highlightId}), so a rule can pin your agent to one session: it can read that session and its highlights and nothing else. The API is read-only, and you choose the operations it may call, so anything beyond those reads is not included unless you add it.

Credential management

Credential isolation

Your Hedy X-API-Key is stored once, encrypted, by your own Jentic One instance and injected in 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 meeting highlights' or 'get a meeting session', and Jentic returns the matching Hedy 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

Fireflies.ai API

→

Fireflies is a competing AI meeting assistant offering similar transcript and highlight extraction

Choose Fireflies if the user already records meetings there; choose Hedy if their recordings live in Hedy

Alternative

Grain API

→

Grain captures meeting recordings and highlights and is a direct alternative to Hedy

Pick Grain when video clip extraction matters; pick Hedy for transcript-and-highlight workflows

Complementary

Gong API

→

Gong focuses on revenue intelligence over recorded calls, complementary to Hedy's general meeting capture

Use Gong when sales-call analytics are the goal; use Hedy when generic meeting notes and decisions are needed

FAQs

Specific to using Hedy API through Jentic.

Why is there no official OpenAPI spec for Hedy API?

Hedy publishes a Swagger UI on SwaggerHub but does not distribute a maintained OpenAPI file. Jentic generates and maintains this spec so that AI agents and developers can call Hedy 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 Hedy API use?

Hedy uses an API key passed in the X-API-Key header (the ApiKeyAuth scheme in the spec). Through Jentic, the key is stored encrypted in the vault and the agent receives scoped access at execution time.

Can I retrieve a meeting transcript with this API?

Yes. GET /sessions/{sessionId} returns the session record including the transcript and summary fields, so an agent can pull the full meeting text in a single call.

What are the rate limits for the Hedy API?

The OpenAPI spec does not declare hard rate limits; Hedy applies fair-use limits per workspace. For high-volume sync workflows, paginate /sessions by date and cache transcripts locally rather than re-fetching.

How do I list recent meeting highlights through Jentic?

Run pip install jentic, have the agent search for 'list meeting highlights', load the GET /highlights operation, and execute it filtered to the desired date range.

Does the Hedy API support creating or updating sessions?

No. The current API surface is read-only - agents can list and retrieve sessions and highlights, but session creation happens inside the Hedy app via the meeting recorder.

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

Yes. Jentic One is self-hosted, so your own rules decide which of Hedy's four read-only operations the agent may call and which credentials it may use. Because Hedy carries the resource id in the URL path (GET /sessions/{sessionId} and GET /highlights/{highlightId}), you can pin the agent to a single session so it reads only that session and its highlights and nothing else. Anything beyond the reads you approve, such as listing all sessions or highlights, is not available to the agent unless you add it.

GET STARTED

Start building with Hedy API

Explore with Jentic One
View OpenAPI Document