Creates a meeting and optional participants, returning a video call payload.
cURL
curl --request POST \ --url https://app.lyra.so/api/v1/meeting \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "title": "Customer kickoff", "start": "2026-02-03T15:00:00.000Z", "attendees": "[email protected]" } '
{ "type": "lyra_video", "id": "meeting_123", "password": "", "url": "https://app.lyra.so/meeting/meeting_123" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"Customer kickoff"
"2026-02-03T15:00:00.000Z"
"[email protected]"
Meeting created
"lyra_video"
"meeting_123"
""
"https://app.lyra.so/meeting/meeting_123"
Was this page helpful?