8x8

8x8 Chat API

Send and receive public Chat Room messages

Operations 2

POST /api/chat/v1/messages/ Send a message to a public chat room. #
GET /api/chat/v1/messages Fetches messages for a room. Defaults to `CHAPI sandbox` room. #

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/8x8-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 email required.

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

OpenAPI Specification

8x8-chat-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 8x8 Work Chat API
  version: '0.1'
  title: Chapi Chat API
servers:
- url: //api.8x8.com/chat
security:
- ApiKeyAuth: []
tags:
- name: chat
  description: Send and receive public Chat Room messages
paths:
  /api/chat/v1/messages/:
    post:
      tags:
      - chat
      summary: Send a message to a public chat room.
      description: This will send a message to a room. If the room does not exist Chapi will create the room, then send the message to it. This endpoint is unable to send messages if the room is private.
      operationId: sendmessageusingpost
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendMessageVO'
        description: message
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SendMessageResponseVO'
            application/json:
              examples:
                response:
                  value:
                    parsed: Hello World!
        '201':
          description: Created
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
  /api/chat/v1/messages:
    get:
      tags:
      - chat
      summary: Fetches messages for a room. Defaults to `CHAPI sandbox` room.
      description: Fetches a list of messages from the room.
      operationId: getmessagesusingget_1
      parameters:
      - name: pageSize
        in: query
        description: pageSize
        required: false
        schema:
          type: integer
          format: int32
          default: 30
      - name: room
        in: query
        description: room
        required: false
        schema:
          type: string
      - name: ts
        in: query
        description: ts
        required: false
        schema:
          type: integer
          format: int64
          default: 0
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MessageVO'
            application/json:
              examples:
                response:
                  value:
                    authorUser:
                      avatarUrl: https://roombot.s3.us-west-1.amazonaws.com/chapi.png
                      email: developer@8x8.com
                      id: 94y4Kq619DeqY30EiGVkdxlU2CpNYJ0E4aAguR46mvc
                      name: Chapi
                    messageParsed: Hello world
                    id: RqQ_b5wiFutWmGlzZCrsSdsmQhdZV6iPu_P5CrPSoDs
                    timestamp: 1594918006814947
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '404':
          description: Not Found
      deprecated: false
components:
  schemas:
    SendMessageVO:
      type: object
      properties:
        messageRaw:
          type: string
        room:
          type: string
      title: SendMessageVO
    SendMessageResponseVO:
      type: object
      properties:
        parsed:
          type: string
      title: SendMessageResponseVO
    MessageVO:
      type: object
      properties:
        authorUser:
          $ref: '#/components/schemas/ChatUserVO'
        id:
          type: string
        parsed:
          type: string
        timestamp:
          type: integer
          format: int64
      title: MessageVO
      description: The Message Object
    ChatUserVO:
      type: object
      properties:
        avatarUrl:
          type: string
        email:
          type: string
        id:
          type: string
        name:
          type: string
      title: ChatUserVO
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
x-samples-languages:
- curl
- node
- ruby
- java
- php
x-readme:
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true