Listar recebidos Telegram
curl --request GET \
--url https://api.notifique.dev/v1/telegram/messages/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/telegram/messages/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/telegram/messages/inbound"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/telegram/messages/inbound"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": [
{
"id": "clxx_in_1",
"instanceId": "clxx_inst",
"receivedAt": "2026-04-12T15:00:00.000Z",
"message": "Texto: Olá bot",
"preview": "Texto: Olá bot",
"fromLabel": "@usuario"
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 20,
"totalPages": 1
}
}Mensagens
Listar recebidos Telegram
Mostra Telegram que chegaram — respostas ou mensagens de clientes.
GET
/
v1
/
telegram
/
messages
/
inbound
Listar recebidos Telegram
curl --request GET \
--url https://api.notifique.dev/v1/telegram/messages/inbound \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/telegram/messages/inbound', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/telegram/messages/inbound"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/telegram/messages/inbound"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"data": [
{
"id": "clxx_in_1",
"instanceId": "clxx_inst",
"receivedAt": "2026-04-12T15:00:00.000Z",
"message": "Texto: Olá bot",
"preview": "Texto: Olá bot",
"fromLabel": "@usuario"
}
],
"pagination": {
"total": 1,
"page": 1,
"limit": 20,
"totalPages": 1
}
}Autorizações
ntfTgBearerAuthntfTgApiKeyHeader
Authorization: Bearer sk_live_xxxxx
Parâmetros de consulta
Página.
Itens por página.
Busca no texto da prévia ou no JSON bruto.
Restringir a uma instância.
Recebidos a partir de (ISO 8601).
Recebidos até (ISO 8601).
Resposta
Lista em data (id, instanceId, receivedAt, message, preview igual a message, fromLabel) e pagination. Sem JSON bruto.
Esta página foi útil?

