# Telemost Telegram Channel Profile & Analytics

> Telemost Telegram Channel Profile & 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-13).

Fetches profile and analytics data for a public Telegram channel, including title, description, subscriber count, category, country, language, links, and verified status.

## Facts

- Endpoint: GET https://api.telemost.io/v1/data/channel
- Price: $0.0165/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telemost-telegram-channel-profile-analytics-8364ce3d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ey4G3knUMQcVwidQRC-VY

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-profile-analytics-8364ce3d
```

Example prompt: Can you pull the full profile for the Telegram channel @durov — I want to see its subscriber count, category, country, language, verified status, and any external links listed?

## When to prefer this

Use this endpoint when you need a comprehensive profile snapshot of a Telegram channel in a single call — covering identity, audience size, categorization, and verification status. Prefer this over search or sentiment endpoints when you already know the channel handle and need structured metadata for vetting, enrichment, or display purposes.

## Known failure modes

- Channel not found or does not exist — likely a 404 or empty result
- Invalid channel identifier format — validation error
- Channel is private or restricted — access denied response
- Rate limiting or quota exceeded — 429 response
- Payment not processed correctly via x402 — 402 response

## How this service works

Telegram channel analytics and profile data: title, description, subscribers, category, country, language, links and verified flag. Vet a channel, enrich a dataset, or look up channel data in one call.

## Output

Returns a structured object containing the channel's title, description, subscriber count, category, country, language, linked URLs, and a boolean verified flag, all in a single API response.

## 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": {
   "channel": "@durov",
   "profile": null
  },
  "meta": {
   "cached": false,
   "resource": "/v1/data/channel",
   "generated_at": "2026-07-07T12:00:00.000Z"
  }
 }
}
```

## More

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