Curl
Use it from shell scripts and cron jobs.
Pipe the JSON to jq, store it, or fan it out to other systems.
curl 'https://tg-rss.contractsguard.com/feed/telegram'Call /feed/{channel_name}, get structured JSON, and test it from this page without leaving the browser.
Curl
Pipe the JSON to jq, store it, or fan it out to other systems.
curl 'https://tg-rss.contractsguard.com/feed/telegram'Frontend
Use relative URLs in development, or an absolute host when deployed.
fetch('/feed/telegram')
.then((response) => response.json())
.then((feed) => console.log(feed.items.length))Direct URL
Public channels only. Sensitive or protected channels may return limited data.
https://tg-rss.contractsguard.com/feed/telegramLive demo
Enter a public Telegram channel name. The page will call the real endpoint and pretty-print the JSON.
Response
{
"hint": "Submit the demo to fetch a live feed"
}
/feed/{channel} route your clients call.
https://tg-rss.contractsguard.com/feed/telegram
Service creator
This service was developed by contractsguard.com .