Skip to content
Eden Engine

Telegram Channel Lookup (Batch, by Username)

omnial/telegram-web-batch-channel-info

Given a comma-separated list of Telegram channel usernames (up to 20), returns each channel's public profile in one call: title, verified status, description, subscriber count, and photo/video/link counts. A username that does not resolve to an existing public channel comes back as `ok: false` with a not-found message instead of failing the whole batch.

activeper callv1
Provider
Web & Business Data Network
Category
telegram
Provider price
$0.01638 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "channels"
  ],
  "properties": {
    "channels": {
      "type": "string",
      "examples": [
        "durov,telegram"
      ],
      "description": "Comma-separated usernames (max 20)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "description": "Number of channels requested in this call."
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "ok": {
            "type": "boolean",
            "description": "True when the username resolved to an existing public channel."
          },
          "info": {
            "type": "object",
            "properties": {
              "photo": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The channel's public avatar image URL. Value withheld (stripped to `null`) in this tool's output -- only whether a photo is set is observable, not the image itself."
              },
              "title": {
                "type": "string"
              },
              "counters": {
                "type": "object",
                "properties": {
                  "links": {
                    "type": "string"
                  },
                  "photos": {
                    "type": "string"
                  },
                  "videos": {
                    "type": "string"
                  },
                  "subscribers": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              },
              "username": {
                "type": "string"
              },
              "verified": {
                "type": "boolean"
              },
              "description": {
                "type": "string"
              },
              "subscribers": {
                "type": "string",
                "description": "Abbreviated subscriber count as a display string, e.g. '10.8M'. Duplicates `counters.subscribers` below; both are kept because they come from the same upstream field pair on every real call observed."
              }
            },
            "description": "Present only when `ok` is true.",
            "additionalProperties": true
          },
          "error": {
            "type": "string",
            "description": "Present only when `ok` is false. Observed as a Chinese-language upstream message meaning \"channel does not exist or is not public\" on the one not-found case calibrated -- treat any non-empty value as a not-found/not-public signal rather than parsing its exact text."
          },
          "channel": {
            "type": "string",
            "description": "The requested username this entry answers for, echoed back verbatim."
          }
        },
        "additionalProperties": true
      },
      "description": "One entry per requested username, in request order."
    }
  },
  "description": "The batch lookup result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01638
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026