scrape_date_range
Extract Telegram channel or group posts within a defined date range using an authenticated session. Input includes URL, start date, and optional end date in ISO format.
Instructions
Scrape posts within a specific date range. Uses authenticated session if logged in.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_from | Yes | Start date in ISO format (e.g., 2024-01-01) | |
date_to | No | End date in ISO format (e.g., 2024-01-31) | |
url | Yes | The Telegram channel/group URL |
Input Schema (JSON Schema)
{
"properties": {
"date_from": {
"description": "Start date in ISO format (e.g., 2024-01-01)",
"type": "string"
},
"date_to": {
"description": "End date in ISO format (e.g., 2024-01-31)",
"type": "string"
},
"url": {
"description": "The Telegram channel/group URL",
"type": "string"
}
},
"required": [
"url",
"date_from"
],
"type": "object"
}