# Telemost Telegram Channel Stats API

> Telemost Telegram Channel Stats API 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).

Fetches aggregate analytics and health stats for any public Telegram channel, including subscriber count, growth, post views, reach, engagement rate (ERR/ERR24), mentions, and forwards.

## Facts

- Endpoint: GET https://api.telemost.io/v1/stats/channel
- 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-channel-stats-api-a4a31058
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7JJw5sIA7Y5YZLtrx-iXd

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-channel-stats-api-a4a31058
```

Example prompt: Pull the overall stats for the Telegram channel @durov — I want to see subscribers, growth, average post views, reach, and engagement rate (ERR and ERR24).

## When to prefer this

Use this endpoint when you need a quick, single-call snapshot of a Telegram channel's overall health — subscriber count, growth, reach, and engagement — without needing time-series charts or per-post breakdowns. Prefer sibling endpoints for audience growth charts, per-post analytics, sentiment analysis, or keyword tracking.

## Known failure modes

- Channel not found or is private — returns 404 or empty/null metrics
- Invalid channel username format — returns 400 validation error
- Region hint not recognized — defaults or returns 400
- Payment not included or insufficient — returns 402 Payment Required
- Rate limit exceeded — returns 429
- Channel exists but has no public stats exposed — returns partial/null fields

## How this service works

Telegram channel analytics and statistics: subscribers and growth, average post views, reach, engagement and engagement rate (ERR/ERR24), plus mentions and forwards. A quick stats and health check of any public channel; individual metrics are populated where the channel exposes them.

## Output

Returns a JSON object with aggregate channel metrics including subscriber count, subscriber growth trend, average post views, post reach, engagement rate (ERR), 24-hour engagement rate (ERR24), mentions count, and forwards count. Individual fields may be null if the channel does not expose them publicly.

## 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": [
      "channel"
     ],
     "properties": {
      "region": {
       "enum": [
        "cis",
        "worldwide"
       ],
       "type": "string",
       "description": "Optional routing region hint (cis|worldwide). Does not affect payment (not an x402 field)."
      },
      "channel": {
       "type": "string"
      }
     }
    }
   },
   "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": {
   "stats": null,
   "channel": "@durov"
  },
  "meta": {
   "cached": false,
   "resource": "/v1/stats/channel",
   "generated_at": "2026-07-07T12:00:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telemost-telegram-channel-stats-api-a4a31058/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)
