# Telemost Telegram Search & Discovery

> Telemost Telegram Search & Discovery is a paid API for AI agents from api.telemost.io, paid per call via x402, $0.075/call, status unknown (last checked 2026-09-15).

Search and discover public Telegram channels, groups, and posts by keyword across CIS and worldwide regions.

## Facts

- Endpoint: GET https://api.telemost.io/v1/data/search
- Price: $0.075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/telemost-telegram-search-discovery-fca24ea2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GaweLLl5KO9pMkEMu1Niz

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-search-discovery-fca24ea2
```

Example prompt: Search Telegram for public channels and groups about 'decentralized finance' — show me up to 30 results across all types (channels, groups, and posts) worldwide.

## When to prefer this

Use this endpoint when you need to discover or search across public Telegram channels, groups, and posts by keyword — especially for competitive research, community discovery, source finding, or brand monitoring on Telegram. Prefer this over the post-search sibling when you want a broad discovery across entity types (channels, groups, and posts) rather than deep full-text post search.

## Known failure modes

- Missing required 'query' parameter returns a 400 error
- Limit exceeding 50 returns a validation error
- Invalid scope or region enum value returns a 400 bad request
- Payment failure (x402) prevents the request from completing
- No results found for obscure or niche keywords returns an empty result set
- Rate limiting or quota exhaustion returns a 429 or 402 error

## How this service works

Telegram search and discovery: find public Telegram channels, groups and posts by keyword. Discover sources, communities, competitors or content on any topic.

## Output

A list of matching public Telegram channels, groups, and/or posts relevant to the keyword query, with metadata about each result such as names, descriptions, and identifiers, limited to the requested count and filtered by scope and region.

## 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": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50
      },
      "query": {
       "type": "string"
      },
      "scope": {
       "enum": [
        "channels",
        "groups",
        "posts",
        "all"
       ],
       "type": "string",
       "default": "all"
      },
      "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": {
   "query": "@durov",
   "results": []
  },
  "meta": {
   "page": {
    "limit": 50,
    "cursor": null,
    "has_more": false,
    "next_cursor": null
   },
   "cached": false,
   "resource": "/v1/data/search",
   "generated_at": "2026-07-07T12:00:00.000Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/telemost-telegram-search-discovery-fca24ea2/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)
