Integrations & API
Slack notifications. Shopify and WordPress one-click installs. A REST API for everything else. Webhooks for the events you care about. Your stack, talking to ours.
REST API
Bearer-token auth. JSON in, JSON out. No SOAP, no XML, no surprises. Use it to build custom integrations, sync data into your CRM, or power your own internal tooling.
Chats
GET /v1/chats
List + filter conversations. Paginated.
Visitors
POST /v1/visitors
Identify visitors from your own auth.
Articles
PUT /v1/articles
Sync KB content from your CMS.
Agents
GET /v1/agents
Roster, online status, departments.
Transcripts
GET /v1/transcripts/:id
Full conversation export — JSON or HTML.
Webhooks
POST /v1/webhooks
Subscribe to events; we POST to you.
curl -X POST https://api.mylivechat.com/v1/visitors \
-H "Authorization: Bearer $MLC_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "email": "lee@example.com", "name": "Lee", "plan": "pro" }'
Webhooks
Subscribe to chat.started, chat.ended, offline.form, ai.handoff. We POST signed JSON to your URL with retry-on-fail.
Visitor SDK
Drop-in JS: MyLiveChat.identify({...}). The chat now knows who’s on the line — subscription tier, name, last order, anything you pass.