API Reference

Telegram endpoints

Public channel, group and post metrics. Post responses include a per-emoji reaction breakdown.

All 3 endpoints below take a single url parameter and return the same field vocabulary used across every platform. A full object costs 2 credits; a single field costs 1.
GET /api/v1/telegram/channel
2 credits cache 1m

Telegram channel

Subscriber count, title and verification state for a public Telegram channel.

Parameters

url required
Example: https://t.me/channelname
field optional
Return a single value for 1 credit instead of 2.

Fields

name · title · description · verified · followers

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/telegram/channel?url=https%3A%2F%2Ft.me%2Fchannelname"
GET /api/v1/telegram/group
2 credits cache 1m

Telegram group

Member and online counts for a public Telegram group.

Parameters

url required
Example: https://t.me/groupname
field optional
Return a single value for 1 credit instead of 2.

Fields

name · title · description · verified · followers · online

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/telegram/group?url=https%3A%2F%2Ft.me%2Fgroupname"
GET /api/v1/telegram/post
2 credits cache 1m

Telegram post

View count, reaction breakdown and comment count for a Telegram channel post.

Parameters

url required
Example: https://t.me/channelname/123
field optional
Return a single value for 1 credit instead of 2.

Fields

channelName · postId · channelId · views · reactionBreakdown · reactions · comments · createdAt

Example request

curl -H "Authorization: Bearer $TUBESTAT_KEY" \
  "https://tubestat.co/api/v1/telegram/post?url=https%3A%2F%2Ft.me%2Fchannelname%2F123"