Skip to main content
GET
/
meetings
/
{meeting}
/
participants
/meetings/:meeting/participants
curl --request GET \
  --url https://api.daily.co/v1/meetings/{meeting}/participants \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "user_id": "4q47OTmqa/w=",
      "participant_id": "d61cd7b2-a273-42b4-89bd-be763fd562c1",
      "user_name": "Lindsey",
      "join_time": 1672786813,
      "duration": 150
    },
    {
      "user_id": "pbZ+ismP7dk=",
      "participant_id": "b3d56359-14d7-46af-ac8b-18f8c991f5f6",
      "user_name": "Moishe",
      "join_time": 1672786797,
      "duration": 165
    }
  ]
}

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

Query Parameters

limit
integer<int32>

the largest number of participant records to return

joined_after
string

limit to participants who joined after the given participant, identified by participant_id

joined_before
string

limit to participants who joined before the given participant, identified by participant_id

Response

200

data
object[]