본문으로 건너뛰기

telegram_messages

Get recent messages from crypto Telegram channels. Useful for monitoring community sentiment, news flow, and social signals.

Usage hints:

  • Combine with naver_trend for multi-source sentiment analysis
  • Use pagination to retrieve historical messages

REST endpoint

GET /api/v1/telegram/messages — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
channelstringnoSpecifies channel username (default: )"..."
pageintegerno1Page number (default: 1)1
limitintegerno10Page size (default: 10)10
keystringnopublishedAtSpecifies key to sort by (channelName, views, reactions, forwards, publishedAt) (default: publishedAt)"publishedAt"
sortstringnodescSpecifies sort (asc, desc) (default: desc)"desc"
categorystringnoSpecifies category (english, korean) (default: )"..."
search_querystringnoSpecifies search query (default: )"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "telegram_messages",
"arguments": {
"page": 1,
"limit": 10,
"key": "publishedAt",
"sort": "desc"
}
}
}