Skip to main content
POST
/
meeting
Create a Lyra meeting
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"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
title
string
required
Example:

"Customer kickoff"

start
string<date-time> | null
Example:

"2026-02-03T15:00:00.000Z"

attendees

Response

Meeting created

type
string
required
Example:

"lyra_video"

id
string
required
Example:

"meeting_123"

password
string
required
Example:

""

url
string<uri>
required
Example:

"https://app.lyra.so/meeting/meeting_123"