Zoom Chat API

The Chat API from Zoom — 2 operation(s) for chat.

Operations 2

POST /chat/get #
POST /chat/list #

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/zoom-chat-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

zoom-chat-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Zoom / Account Chat API
  description: Needs description.
  contact:
    name: Zoom Developers
    url: https://zoom.us/developer
    email: developer@zoom.us
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: 1.0.0
servers:
- url: https://api.zoom.us/v1
security:
- api_key: []
- api_secret: []
tags:
- name: Chat
paths:
  /chat/get:
    post:
      tags:
      - Chat
      description: 'Get chat messages for a specified period.


        '
      operationId: chatGet
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              required:
              - access_token
              - from
              - session_id
              - to
              type: object
              properties:
                access_token:
                  type: string
                  description: Archived chat messages access token. Admin who has the view privilege of Archived chat messages will get it.
                session_id:
                  type: string
                  description: Session Id of chat messages.
                from:
                  type: string
                  description: Start date.
                to:
                  type: string
                  description: End date.
                page_size:
                  type: string
                  description: The amount of records returns within a single API call. Defaults to 30. Max of 30 records.
                  default: '30'
                next_page_token:
                  type: string
                  description: Used to paginate through large result sets.  A next page token will be returned whenever the set of available chat history list exceeds 100.  The expiration period is 30 minutes.
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                session_id: unique_id
                group_name: zoom
                from: '2016-01-16T00:00:00.000Z'
                to: '2016-01-22T00:00:00.000Z'
                page_size: 30
                page_count: 1
                next_page_token: ''
                chat_messages:
                - message: test1
                  sender: ''
                  date_time: '2016-01-18T06:40:56.000Z'
  /chat/list:
    post:
      tags:
      - Chat
      description: 'Get chat history list for a specified time period.


        '
      operationId: chatList
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              required:
              - access_token
              - from
              - to
              type: object
              properties:
                access_token:
                  type: string
                  description: Archived chat messages access token. Admin who has the view privilege of Archived chat messages will get it.
                from:
                  type: string
                  description: Start date.
                to:
                  type: string
                  description: End date.
                page_size:
                  type: string
                  description: The amount of records returns within a single API call. Defaults to 30. Max of 30 records.
                  default: '30'
                email:
                  type: string
                  description: Email query condition.
                next_page_token:
                  type: string
                  description: Used to paginate through large result sets.  A next page token will be returned whenever the set of available chat history list exceeds 100.  The expiration period is 30 minutes.
        required: true
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                from: '2016-01-16T00:00:00.000Z'
                to: '2016-01-22T00:00:00.000Z'
                page_size: 30
                page_count: 1
                next_page_token: ''
                chat_list:
                - session_id: unique_id
                  type: Group
                  participants: ''
                  group_name: zoom test1
                  last_message_send_time: '2016-01-18T06:40:56.000Z'
externalDocs:
  description: Zoom REST API Documentation
  url: https://zoom.github.io/api