api_get_channel_info
Retrieve comprehensive details about a Telegram channel by inputting its URL, enabling users to analyze channel-specific data via API interaction.
Instructions
Get detailed information about a Telegram channel using the API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The Telegram channel URL |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The Telegram channel URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}