A Make (formerly Integromat) custom app for Hedy — your AI-powered meeting intelligence assistant.
Hedy helps you be the brightest person in the room by providing real-time transcription, meeting summaries, action items, and intelligent insights from your meetings.
Receives real-time webhook notifications when events occur in Hedy:
- Session created — When a new meeting session starts
- Session ended — When a meeting session completes
- Session exported — When a session is exported
- Highlight created — When a highlight is created during a meeting
- Todo exported — When a todo item is exported
- Suggestion created — When Hedy generates a suggestion
Retrieve detailed session information including transcript, highlights, and todos.
Search and list your sessions with configurable limits.
Retrieve details of a specific highlight.
Search and list highlights across all sessions.
List action items across all sessions.
List your conversation topics.
Retrieve details of a specific topic.
Perform a custom API call to any Hedy endpoint for advanced use cases.
- Open Hedy and go to Settings > API
- Click Generate New Key
- Copy the API key (starts with
hedy_live_) - In Make, create a new Hedy connection and paste your API key
- Choose your Region — United States (
api.hedy.bot, the default) or European Union (eu-api.hedy.bot) if your account uses EU data residency
The region is stored on the connection and selects the API host for every module. Connections created before region support was added continue to use the US host.
Send meeting summaries to Slack when sessions end:
[Watch Events: session.ended] → [Get a Session] → [Slack: Send Message]
Save important highlights to a Notion database:
[Watch Events: highlight.created] → [Get a Highlight] → [Notion: Create Database Item]
Export todos to your project management tool:
[Watch Events: todo.exported] → [Jira/Trello/Asana: Create Task]
Generate daily meeting reports:
[Schedule: Daily at 5 PM] → [List Sessions] → [Format Report] → [Email: Send]
This app is built using the Make Apps SDK and managed via the Make Apps Editor VS Code extension.
- Install the Make Apps Editor VS Code extension
- Generate an API token in your Make profile under API Access
- Clone this repo and open it in VS Code
- Create
.secrets/apikeywith your Make API token - Right-click
makecomapp.jsonand select Deploy to Make
make-app-hedy/
├── makecomapp.json # App manifest
├── general/
│ ├── base.iml.json # Base URL and shared config
│ └── common.json # Shared data
├── connections/
│ └── apiKey/ # API key connection
├── webhooks/
│ └── hedyEvents/ # Webhook lifecycle (attach/detach)
├── modules/
│ ├── watchEvents/ # Instant trigger
│ ├── getSession/ # Action: get session details
│ ├── listSessions/ # Search: list sessions
│ ├── getHighlight/ # Action: get highlight details
│ ├── listHighlights/ # Search: list highlights
│ ├── listTodos/ # Search: list todos
│ ├── listTopics/ # Search: list topics
│ ├── getTopic/ # Action: get topic details
│ ├── makeAnApiCall/ # Universal: custom API call
│ └── groups.json # Module grouping
└── rpcs/
├── listTopicsRpc/ # Dynamic dropdown for topics
└── listSessionsRpc/ # Dynamic dropdown for sessions
- Hedy Support: support@hedy.bot
- GitHub Issues: make-app-hedy/issues
Contributions are welcome! Please open an issue or submit a pull request.
This project is licensed under the MIT License — see the LICENSE file for details.
Made with care by the Hedy team