$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "startUrls": [
< {
< "url": "https://apify.com/futurizerush"
< },
< {
< "url": "https://rush.zeabur.app/"
< },
< {
< "url": "https://www.threads.com/@futurizerush"
< }
< ],
< "maxRequestsPerCrawl": 10,
< "maxConcurrency": 3,
< "smartMode": true,
< "cacheEnabled": true,
< "extractionRules": {
< "article_title": "h1.post-title, h1.article-title, h1.entry-title",
< "article_content": "article, main, .post-content, .article-content",
< "author": ".author-name, .by-author, .post-author",
< "publish_date": "time, .post-date, .publish-date",
< "category": ".category, .post-category",
< "tags": ".tags a, .post-tags a"
< },
< "customData": {
< "source": "Apify Actor",
< "scraped_by": "@futurizerush",
< "language": "en-US"
< },
< "waitForSelector": "",
< "scrollToBottom": false,
< "pageLoadTimeoutSecs": 25,
< "blockResources": []
<}
<EOF
$curl "https://api.apify.com/v2/acts/futurizerush~web-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'