Platform · Social

Telegram

Public channels and their posts.

Endpoints
3
Base price
2 cr
Source
Our own scraper
EndpointReturnsCredits
GET /v1/telegram/profileProfile2
GET /v1/telegram/postsPost[]2
GET /v1/telegram/searchSearchResult[]2

Core

Profile

2 credits

Get a public profile by handle.

GET/v1/telegram/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/telegram/profile \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=durov"

Posts

2 credits

List a profile's recent posts.

GET/v1/telegram/postsPost[]
handlerequiredUsername without the @.
cursoroptionalFrom meta.next_cursor, to get the next page.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/telegram/posts \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=durov"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.