Skip to main content
GET
/
meetings
/
{meeting}
/meetings/:meeting
curl --request GET \
  --url https://api.daily.co/v1/meetings/{meeting} \
  --header 'Authorization: Bearer <token>'
{
  "id": "d61cd7b2-a273-42b4-89bd-be763fd562c1",
  "room": "room-name",
  "start_time": 1672606399,
  "duration": 2055,
  "ongoing": false,
  "max_participants": 5
}

Authorizations

Authorization
string
header
required

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

Path Parameters

meeting
string
required

the ID of the meeting session

Response

200

id
string
Example:

"d61cd7b2-a273-42b4-89bd-be763fd562c1"

room
string
Example:

"room-name"

start_time
integer
Example:

1672606399

duration
integer
Example:

2055

ongoing
boolean
Example:

false

max_participants
integer
Example:

4