API Reference

Build with MeetingMint. REST API.

Integrate meeting transcription, summaries, and exports into your applications with our REST API.

Overview

The MeetingMint API provides programmatic access to transcription, summarization, and export features.

Base URL

https://api.meetingmint.com/v1

Authentication

API requests require a Bearer token in the Authorization header.

Rate Limits

Rate limits depend on your plan. Enterprise plans include higher limits.

Endpoints

Core API endpoints for meeting intelligence.

POST /transcriptions

Upload audio and create a new transcription job.

GET /transcriptions/:id

Retrieve a transcription by ID.

GET /transcriptions/:id/summary

Get AI-generated summary for a transcription.

GET /transcriptions/:id/export

Export transcription in TXT, SRT, CSV, or ICS format.

GET /transcriptions

List all transcriptions in your workspace.

DELETE /transcriptions/:id

Delete a transcription.

Response format

All responses are returned as JSON.

{
  "id": "tr_abc123",
  "status": "completed",
  "duration_seconds": 3600,
  "speakers": [
    { "id": "spk_1", "name": "Speaker 1" },
    { "id": "spk_2", "name": "Speaker 2" }
  ],
  "transcript": {
    "segments": [
      {
        "speaker_id": "spk_1",
        "start": 0.0,
        "end": 5.2,
        "text": "Hello, let's get started."
      }
    ]
  },
  "created_at": "2024-01-15T10:30:00Z"
}
Get started

Ready to integrate?

Request API access and start building with MeetingMint.