Actor is under maintenance
This Actor may be unreliable while under maintenance. Would you like to try a similar Actor instead?

Telegram Scraper
- mtnfranke/telegram-scraper
- Modified
- Users 1.1k
- Runs 4k
- Created by
Martin Franke
Powerful Telegram scraper to extract data from Chats and Groups. Use it to scrape, filter, search, and backup all your message history. Download Telegram message data as a HTML, JSON, CSV, Excel, or XML doc.
To run the code examples, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token. For a more detailed explanation, please read about running Actors via the API in Apify Docs.
# Set API token
API_TOKEN=<YOUR_API_TOKEN>
# Prepare Actor input
cat > input.json <<'EOF'
{
"phone": "+491234567890",
"chatIDs": [],
"resultsPerChat": 100,
"dateFilter": "",
"proxy": {
"useApifyProxy": false
}
}
EOF
# Run the Actor
curl "https://api.apify.com/v2/acts/mtnfranke~telegram-scraper/runs?token=$API_TOKEN" \
-X POST \
-d @input.json \
-H 'Content-Type: application/json'