Tech Messages API

Moderators can tag messages as "tech" in the admin panel, and you can receive all messages with this tag by API.

Endpoint

https://techmessages.watchers.io/find/{API KEY}

⚠️

Regional endpoints: Replace techmessages.watchers.io with the endpoint matching your project region. See Supported Regions for details.

RegionEndpoint
Europe (default)techmessages.watchers.io
North Americatechmessages.us.watchers.io
South Americatechmessages.sa.watchers.io
Asiatechmessages.hk.watchers.io
Africatechmessages.za.watchers.io

GET Params

ParameterDescription
cursor or offsetfor cursor or classic(offset) pagination
limitnumber of messages in response, default 10
roomidid of room

Response example

{
  "data": [
    {
      "id": 7343,
      "createdAt": "2020-01-01T09:00:00.150Z",
      "name": "John",
      "text": "Hi all!",
      "pic": "img.jpg",
			"userId": "123123",
      "roomId": "testRoom",
      "roomName": "Room for a Test messages"
    }
  ],
  "nextCursor": null,
  "hasNext": false
}