Daily presence API

The presence API from Daily — 1 operation(s) for presence.

Operations 1

GET /presence /presence #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/daily-presence-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

daily-presence-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Daily batch/rooms Presence API
  description: "The Daily REST API offers the ability to manage the following: \n- Overall Domain Configuration\n- Individual Room creation and config management \n- Meeting token creation and validation\n- Recording and compositing management \n- Meeting analytics\n- Logs and metrics\n- Real-time presence\n\nPlease reach out to help@daily.co if we can help with anything"
  version: 1.1.1
  contact:
    name: Daily
    url: https://docs.daily.co
    email: help@daily.co
servers:
- url: https://api.daily.co/v1
security:
- bearerAuth: []
tags:
- name: presence
paths:
  /presence:
    get:
      summary: /presence
      operationId: GetPresence
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                description: A map of room name to array of currently present participants.
                additionalProperties:
                  type: array
                  items:
                    type: object
                    properties:
                      room:
                        type: string
                        description: The room name.
                      id:
                        type: string
                        description: Unique participant session ID.
                      userId:
                        type:
                        - string
                        - 'null'
                        description: The user ID if set on the meeting token, otherwise null.
                      userName:
                        type:
                        - string
                        - 'null'
                        description: Display name of the participant.
                      mtgSessionId:
                        type: string
                        description: The meeting session ID.
                      joinTime:
                        type: string
                        format: date-time
                        description: ISO 8601 timestamp of when this participant joined.
                      duration:
                        type: integer
                        description: How long this participant has been in the meeting, in seconds.
                x-additionalPropertiesName: room
              examples:
                Result:
                  value:
                    my-room:
                    - room: my-room
                      id: aaaaaaaa-0000-0000-0000-000000000001
                      userId: null
                      userName: Alice
                      mtgSessionId: 16e9701a-93e0-4933-83c9-223e7c40d552
                      joinTime: '2026-03-27T16:37:22.000Z'
                      duration: 22
                    - room: my-room
                      id: aaaaaaaa-0000-0000-0000-000000000002
                      userId: null
                      userName: Bob
                      mtgSessionId: 16e9701a-93e0-4933-83c9-223e7c40d552
                      joinTime: '2026-03-27T16:37:25.000Z'
                      duration: 19
      deprecated: false
      tags:
      - presence
      security:
      - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer