---
title: "/meetings"
method: GET
path: "/meetings"
tags: ["meetings"]
---

# /meetings

`GET /meetings`

retrieve meeting analytics

## Query parameters

- `room` string
- `timeframe_start` integer
- `timeframe_end` integer
- `limit` integer
- `starting_after` string
- `ending_before` string
- `ongoing` boolean
- `no_participants` boolean

## Response `200`

200

- object
  - `total_count` integer — Total number of meetings matching the query.
  - `data` object[]
    - `id` string — Unique meeting session ID.
    - `room` string — The room name the meeting took place in.
    - `start_time` integer — Unix timestamp of when the meeting started.
    - `duration` integer — Duration of the meeting in seconds.
    - `ongoing` boolean — Whether the meeting is currently in progress.
    - `max_participants` integer — Peak number of simultaneous participants during the meeting.
    - `participants` object[]
      - `user_id` string, nullable — The user ID if set on the meeting token, otherwise null.
      - `participant_id` string — Unique participant session ID.
      - `user_name` string, nullable — Display name of the participant.
      - `join_time` integer — Unix timestamp of when this participant joined.
      - `duration` integer — How long this participant was in the meeting, in seconds.

## Other responses

- `400` — 400

---

[API](https://skmtc.net/daily/apis/daily-api.md) · [All operations](https://skmtc.net/daily/apis/daily-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/daily/daily-api/revisions/98b9b9a97a33/schema)
