GET
/
meetings
curl --request GET \
  --url https://api.daily.co/v1/meetings \
  --header 'Authorization: Bearer <token>'
{
  "total_count": 123,
  "data": [
    {
      "id": "<string>",
      "room": "<string>",
      "start_time": 123,
      "duration": 123,
      "ongoing": true,
      "participants": [
        {
          "user_id": "<string>",
          "participant_id": "<string>",
          "user_name": "<string>",
          "join_time": 123,
          "duration": 123
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

room
string

Limits results to a specific room.

timeframe_start
integer

Limits results to meetings with a start time greater than or equal to this value.

timeframe_end
integer

Limits results to meetings with a start time less than this value.

ongoing
boolean

Limits results to ongoing meetings if true, or completed meetings if false.

no_participants
boolean

If set to true, doesn't return the participant list in each meeting.

Response

200
application/json
A successful response.
total_count
integer
required

Total number of meeting sessions matching the query.

data
object[]
required