scrape_channel_authenticated
Access and extract data from Telegram channels using authenticated sessions, including restricted content. Specify the channel URL and maximum posts to scrape.
Instructions
Scrape a Telegram channel using authenticated session (can access restricted content)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_posts | No | Maximum number of posts to scrape (default: 100) | |
url | Yes | The Telegram channel URL (e.g., https://t.me/channelname) |
Input Schema (JSON Schema)
{
"properties": {
"max_posts": {
"default": 100,
"description": "Maximum number of posts to scrape (default: 100)",
"type": "number"
},
"url": {
"description": "The Telegram channel URL (e.g., https://t.me/channelname)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}