Skip to main content
GET
/
v1
/
telegram
/
instances
Listar instâncias Telegram
curl --request GET \
  --url https://api.notifique.dev/v1/telegram/instances \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "clxx_inst",
      "name": "Suporte",
      "status": "ACTIVE",
      "createdAt": "2026-04-01T12:00:00.000Z",
      "updatedAt": "2026-04-01T12:05:00.000Z",
      "mode": "BOT",
      "botUsername": "@meubot"
    }
  ],
  "pagination": {
    "total": 1,
    "page": 1,
    "limit": 20,
    "totalPages": 1
  }
}

Authorizations

Authorization
string
header
required

Authorization: Bearer sk_live_xxxxx

Query Parameters

page
string

Número da página.

limit
string

Itens por página.

status
string

Filtrar por status da instância.

Busca por nome ou @ do bot.

Response

data contém instâncias com id, name, status, createdAt, updatedAt, mode (BOT / USER) e botUsername quando aplicável. pagination traz totais.

success
boolean
data
object[]
pagination
object