latestOpenAPI 3.0.02026-08-1027587.8 KB

3d9aec0774ff

Get meetings

Returns a list of meetings.

get/meetings

Query parameters

cursorstring

The cursor for paginating through the results. To fetch the next page, set the cursor to the cursor returned by the previous request.

Example:8f4031bfc7640c5f267b11b6fe0c2507
limitinteger

The limit for the pagination - the maximum number of results that will be returned within a single API response.

fieldsstring[]

Additional fields that should be populated.

  • hostRoomUrl - Include hostRoomUrl field in the meeting response.
  • viewerRoomUrl - Include viewerRoomUrl field in the meeting response.

Response

A JSON object with the page containing the array with the meetings results.

cursorstring required

The cursor for paginating through the results. To fetch the next page, set the cursor to the cursor returned by the previous request. If there are no more results, the value returned is null.

Example response

{
  "results": [
    {
      "meetingId": "9cf691bf-f2d5-4420-bda9-ee8607bb558b",
      "startDate": "2025-05-12T16:42:49Z",
      "endDate": "2025-05-12T17:42:49Z",
      "roomUrl": "https://subdomain.whereby.com/room-prefix-793e9ec1-c686-423d-9043-9b7a10c553fd"
    }
  ]
}