scrape_channel_full
Extract all posts from a Telegram channel and save them as MD and JSON files using authenticated sessions for comprehensive data collection and storage.
Instructions
Scrape ALL posts from a Telegram channel and save to file. Uses authenticated session if logged in. Returns file location.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
save_to_file | No | Save results to MD and JSON files | |
url | Yes | The Telegram channel URL (e.g., https://t.me/channelname) |
Input Schema (JSON Schema)
{
"properties": {
"save_to_file": {
"default": true,
"description": "Save results to MD and JSON files",
"type": "boolean"
},
"url": {
"description": "The Telegram channel URL (e.g., https://t.me/channelname)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}