Skip to main content
The Jamie API lets you programmatically access your meeting data — summaries, transcripts, tasks, and more. Build custom integrations, sync meeting insights into your tools, or create dashboards tailored to your workflow.

Base URL

https://beta-api.meetjamie.ai

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

  1. Make sure you’re on a Pro, Team, or Enterprise plan
  2. Create an API key in Settings → Developers → API Keys
  3. Start making requests:
# With a workspace key
curl -H "x-api-key: jk_your_workspace_key" \
  "https://beta-api.meetjamie.ai/v1/workspace/meetings.list"

# With a personal key
curl -H "x-api-key: jk_your_personal_key" \
  "https://beta-api.meetjamie.ai/v1/me/meetings.list"
No OAuth flows, no tokens to refresh. Just a single API key in the x-api-key header.
Use the Request Builder in Settings → Developers → API Keys to visually construct requests with the right parameters — no manual URL formatting needed.

Route Structure

The API has two route sets — one for each key type. Both use the same request format.

/v1/workspace/ — Workspace keys

MethodEndpointDescription
GET/v1/workspace/meetings.listList all workspace meetings
GET/v1/workspace/meetings.getGet meeting details
POST/v1/workspace/meetings.deleteDelete a meeting
GET/v1/workspace/tasks.listList all workspace tasks

/v1/me/ — Personal keys

MethodEndpointDescription
GET/v1/me/meetings.listList your meetings + shared meetings
GET/v1/me/meetings.getGet meeting details
POST/v1/me/meetings.deleteDelete a meeting you own
GET/v1/me/meetings.searchSearch across your meetings
GET/v1/me/tasks.listList your tasks + tasks from shared meetings
GET/v1/me/tags.listList 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.