# Telemost Telegram Post Analytics

> Telemost Telegram Post Analytics is a paid API for AI agents from api.telemost.io, paid per call via x402, $0.0165/call, status unknown (last checked 2026-09-14).

Returns statistics for a single Telegram post including views over time, forwards, and reactions.

## Facts

- Endpoint: GET https://api.telemost.io/v1/data/post
- Price: $0.0165/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telemost-telegram-post-analytics-bcaf8a2e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xUajpfnYEDVvcOEZdvfI5

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 telemost-telegram-post-analytics-bcaf8a2e
```

Example prompt: Can you pull up the stats for this Telegram post — https://t.me/durov/100 — I want to see its view count over time, how many times it was forwarded, and what reactions it got.

## When to prefer this

Use this endpoint when you need granular performance data on a specific individual Telegram post — views over time, forwards, and reactions — rather than channel-level aggregate analytics. Prefer this over channel-level endpoints when the user provides a specific post URL or post ID and wants to evaluate that post's reach and virality.

## Known failure modes

- Invalid or malformed t.me post URL returns an error
- Private or restricted channel posts may return no data or an access error
- Post does not exist returns a not-found error
- Payment failure (x402) if USDC balance is insufficient
- Invalid region enum value causes a validation error

## How this service works

Telegram post analytics: a single post with its statistics over time, views, forwards and reactions. Measure how a specific post performed.

## Output

Returns structured analytics for the specified Telegram post including time-series view counts, total forwards, and reaction breakdown, allowing measurement of how the post performed since publication.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "post"
     ],
     "properties": {
      "post": {
       "type": "string",
       "description": "t.me/<channel>/<id> link, or channel+id."
      },
      "region": {
       "enum": [
        "cis",
        "worldwide"
       ],
       "type": "string",
       "description": "Optional routing region hint (cis|worldwide). Does not affect payment (not an x402 field)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "post": "t.me/durov/530",
   "stats": null,
   "content": null
  },
  "meta": {
   "cached": false,
   "resource": "/v1/data/post",
   "generated_at": "2026-07-07T12:00:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telemost-telegram-post-analytics-bcaf8a2e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.telemost.io](https://www.zero.xyz/host/api.telemost.io/llms.txt)
