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_KEYBase URL
All API requests should be made to:
https://api.convomaster.top/v1API Reference
POST /api/v1/meetings
Create a new meeting session
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| title | string | Yes | Title of the meeting |
| participants | array | Yes | Array 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
Retrieve meeting transcription
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| meetingId | string | Yes | Unique identifier of the meeting |
Response
{
"meetingId": "m123xyz",
"transcription": [{
"timestamp": "2024-02-20T10:00:05Z",
"speaker": "John Doe",
"text": "Let's begin the meeting"
}]
}