# Telegram — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Access comments from public Telegram channel posts directly through the embedded discussion widget to analyze conversations and engagement. Retrieve comment data organized by post to monitor discussions and understand audience interactions on your channels.

**Category:** Social Media | **Website:** [t.me/ilchegg/10400](https://t.me/ilchegg/10400) | **Docs:** [parse.bot/marketplace/b3adcfef-398c-4c5a-be75-98d1d005dc5c/t-me-api](https://parse.bot/marketplace/b3adcfef-398c-4c5a-be75-98d1d005dc5c/t-me-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-t-me-api-b3adcfef/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_comments

Retrieve comments from a public Telegram channel post. Comments are returned sorted by time (oldest first). Pagination through older comments is handled automatically until the specified limit is reached. Each comment includes the author name, profile URL, message text, timestamp, media flags, and photo URLs when available. Posts without a linked discussion group return an empty comments list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `channel` | string | Yes | Telegram channel username (the part after t.me/, e.g. 'ilchegg'). |
| `limit` | integer | No | Maximum number of comments to return. |
| `post_id` | string | Yes | Numeric post ID within the channel (e.g. '10400'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-t-me-api-b3adcfef/get_comments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"channel":"<string>","limit":"<integer>","post_id":"<string>"}'
```
