# SocialFetch Telegram Channel Posts

> SocialFetch Telegram Channel Posts is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Lists recent posts from a public Telegram channel by its username handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/telegram/channels/:handle/posts
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-telegram-channel-posts-b9f48072
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PAIn5oGni9XAigXJgm43q

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-telegram-channel-posts-b9f48072
```

Example prompt: Can you pull the recent posts from the Telegram channel @durov so I can see what they've been sharing?

## When to prefer this

Use this endpoint when you need to programmatically retrieve recent posts from a known public Telegram channel by its username. Prefer this over manual scraping when you need structured, paginated output. Note that Telegram groups are not supported — only channels.

## Known failure modes

- Channel handle not found or does not exist — returns an error indicating invalid handle
- Handle points to a group rather than a channel — groups are not supported, returns an error
- Channel is private — only public channels are supported
- Malformed or expired pagination cursor — returns a pagination error
- Rate limit exceeded — returns a 429 or payment-related error

## How this service works

List recent posts from a public Telegram channel. Groups are not supported.

## Output

A paginated list of recent posts from the specified public Telegram channel, including post content and an opaque cursor for fetching the next page of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 200,
       "minLength": 1,
       "description": "Telegram public username (channel or group), with or without leading @."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "cursor": {
       "type": "string",
       "description": "Opaque pagination cursor from a previous response. Omit for the first page."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-telegram-channel-posts-b9f48072/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
