# Telemost Telegram Engagement Analytics

> Telemost Telegram Engagement 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-16).

Returns engagement rate (ER), engagement rate by reach (ERR), and 24-hour reach engagement (ERR24) time-series data for a Telegram channel

## Facts

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

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-engagement-analytics-0c955d66
```

Example prompt: Show me the daily engagement rate, ERR, and ERR24 trends for the Telegram channel @durov over the past month — I want to benchmark how active their audience is.

## When to prefer this

Use this endpoint when you need quantitative engagement time-series metrics specifically for Telegram channels, including ER, ERR, and ERR24. Prefer this over general social analytics tools when working specifically within the Telegram ecosystem and needing granular control over aggregation periods.

## Known failure modes

- Channel not found or invalid channel identifier — 404 or empty result
- Channel has insufficient data for the requested aggregation period
- Invalid aggregation enum value — validation error
- Payment not completed (x402 protocol) — 402 Payment Required
- Rate limit exceeded — 429 Too Many Requests

## How this service works

Telegram engagement analytics: engagement rate (ER), engagement rate by reach (ERR) and 24-hour reach engagement (ERR24) over time. Benchmark audience activity and channel performance.

## Output

A time-series dataset containing ER (engagement rate), ERR (engagement rate by reach), and ERR24 (24-hour reach engagement) metrics for the specified Telegram channel, aggregated at the requested granularity (day, week, month, or year).

## 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": {
      "channel": {
       "type": "string"
      },
      "aggregation": {
       "enum": [
        "day",
        "week",
        "month",
        "year"
       ],
       "type": "string",
       "default": "day",
       "description": "Chart granularity: day/week/month/year. Controls point spacing, not a time window."
      }
     }
    }
   },
   "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": {
   "series": [],
   "channel": "@durov"
  },
  "meta": {
   "cached": false,
   "resource": "/v1/stats/engagement",
   "generated_at": "2026-07-07T12:00:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telemost-telegram-engagement-analytics-0c955d66/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)
