Base URL
What You Can Do
Meetings
List, fetch details, search, and delete meetings
Tasks
Query action items extracted from your meetings
Tags
List your tags and filter meetings by tag\
Quick Start
- Make sure you’re on a Pro, Team, or Enterprise plan
- Create an API key in Settings → Developers → API Keys
- Start making requests:
x-api-key header.
Route Structure
The API has two route sets — one for each key type. Both use the same request format./v1/workspace/ — Workspace keys
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/workspace/meetings.list | List all workspace meetings |
GET | /v1/workspace/meetings.get | Get meeting details |
POST | /v1/workspace/meetings.delete | Delete a meeting |
GET | /v1/workspace/tasks.list | List all workspace tasks |
/v1/me/ — Personal keys
| Method | Endpoint | Description |
|---|---|---|
GET | /v1/me/meetings.list | List your meetings + shared meetings |
GET | /v1/me/meetings.get | Get meeting details |
POST | /v1/me/meetings.delete | Delete a meeting you own |
GET | /v1/me/meetings.search | Search across your meetings |
GET | /v1/me/tasks.list | List your tasks + tasks from shared meetings |
GET | /v1/me/tags.list | List your tags |
New to the API? Start with Getting Started to create your key and make your first request. Then read Access & Security to understand key scopes and rate limits.

