scrape_group
Extract and convert Telegram group posts into markdown format using an authenticated session. Specify the group URL and optionally limit the number of posts to retrieve.
Instructions
Scrape a Telegram group and return posts in markdown format. Uses authenticated session if logged in.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_posts | No | Maximum number of posts to scrape (default: 100) | |
url | Yes | The Telegram group URL (e.g., https://t.me/groupname) |
Input Schema (JSON Schema)
{
"properties": {
"max_posts": {
"default": 100,
"description": "Maximum number of posts to scrape (default: 100)",
"type": "number"
},
"url": {
"description": "The Telegram group URL (e.g., https://t.me/groupname)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}