---
title: Tech Messages API
updatedAt: 2026-04-02T15:36:06.000Z
---

Fetch the complete documentation index at: https://docs.watchers.io/llms.txt

# 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](https://techmessages.watchers.io/find/\{API) KEY}

> ⚠️ **Regional endpoints:** Replace `techmessages.watchers.io` with the endpoint matching your project region. See [Supported Regions](https://docs.watchers.io/docs/supported-regions) for details.
> | Region | Endpoint |
> | :--- | :--- |
> | Europe (default) | `techmessages.watchers.io` |
> | North America | `techmessages.us.watchers.io` |
> | South America | `techmessages.sa.watchers.io` |
> | Asia | `techmessages.hk.watchers.io` |
> | Africa | `techmessages.za.watchers.io` |

**GET Params**

| Parameter        | Description                                |
| ---------------- | ------------------------------------------ |
| cursor or offset | for cursor or classic(offset) pagination   |
| limit            | number of messages in response, default 10 |
| roomid           | id of room                                 |

**Response example**

```json
{
  "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
}
```
