본문으로 건너뛰기

telegram_channels

Get Telegram channel data for crypto communities. Returns channel metadata including subscriber counts and activity. Useful for social sentiment analysis.

Usage hints:

  • Sort by subscribers desc to find most popular channels
  • Use category filter to find specific types of channels

REST endpoint

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

Parameters

NameTypeRequiredDefaultDescriptionExample
pageintegerno1Page number (default: 1)1
limitintegerno10Page size (default: 10)10
categorystringnoemptySpecifies language category of telegram channel (default: empty)"empty"
keystringnochannelNameSpecifies key to sort by (channelName, handle, subscribers, createdAt) (default: channelName)"channelName"
sortstringnodescSpecifies sort (asc, desc) (default: desc)"desc"

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "telegram_channels",
"arguments": {
"page": 1,
"limit": 10,
"category": "empty",
"key": "channelName",
"sort": "desc"
}
}
}