LiveChat Events API

The Events API from LiveChat — 5 operation(s) for events.

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/livechat-events-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

livechat-events-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: LiveChat Agent Chat Chats Events API
  description: REST endpoints (Text Platform v3.6 Agent Chat API) for agents to manage chats, send messages, transfer conversations, and update statuses. All actions are POST requests under /agent/action/{action} and authenticated with OAuth 2.x bearer tokens or Personal Access Tokens.
  version: v3.6
  contact:
    name: LiveChat / Text Platform
    url: https://platform.text.com/docs/messaging/agent-chat-api
servers:
- url: https://api.livechatinc.com/v3.6
  description: LiveChat Agent Chat API
security:
- bearerAuth: []
tags:
- name: Events
paths:
  /agent/action/send_event:
    post:
      tags:
      - Events
      summary: Send event
      description: Send a message or event in a chat.
      operationId: sendEvent
      responses:
        '200':
          description: Event sent.
  /agent/action/send_event_preview:
    post:
      tags:
      - Events
      summary: Send event preview
      description: Send an unsaved message preview.
      operationId: sendEventPreview
      responses:
        '200':
          description: Preview sent.
  /agent/action/upload_file:
    post:
      tags:
      - Events
      summary: Upload file
      description: Upload a file (max 10MB).
      operationId: uploadFile
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
      responses:
        '200':
          description: File uploaded.
  /agent/action/send_rich_message_postback:
    post:
      tags:
      - Events
      summary: Send rich message postback
      operationId: sendRichMessagePostback
      responses:
        '200':
          description: Postback sent.
  /agent/action/mark_events_as_seen:
    post:
      tags:
      - Events
      summary: Mark events as seen
      operationId: markEventsAsSeen
      responses:
        '200':
          description: Acknowledged.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.x bearer token or Personal Access Token.