API Documentation

Integrate ConvoMaster's powerful features into your applications

Getting Started

Authentication

All API requests require authentication using an API key. Include your API key in the request headers:

Authorization: Bearer YOUR_API_KEY

Base URL

All API requests should be made to:

https://api.convomaster.top/v1

API Reference

POST /api/v1/meetings

POST

Create a new meeting session

Parameters

NameTypeRequiredDescription
titlestringYesTitle of the meeting
participantsarrayYesArray of participant email addresses

Response

{
  "meetingId": "m123xyz",
  "title": "Team Sync",
  "startTime": "2024-02-20T10:00:00Z",
  "participants": ["user@example.com"]
}

GET /api/v1/meetings/{meetingId}/transcription

GET

Retrieve meeting transcription

Parameters

NameTypeRequiredDescription
meetingIdstringYesUnique identifier of the meeting

Response

{
  "meetingId": "m123xyz",
  "transcription": [{
    "timestamp": "2024-02-20T10:00:05Z",
    "speaker": "John Doe",
    "text": "Let's begin the meeting"
  }]
}