Get a single public post from a Telegram channel by handle and post ID. Groups are not supported.
Endpoint
/v1/telegram/channels/{handle}/posts/{postId}
Path
Telegram public username (channel or group), with or without leading @.
Numeric Telegram channel post ID from the public URL.
const response = await fetch( "https://api.socialfetch.dev/v1/telegram/channels/durov/posts/515", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);