$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "source_mode": "auto",
< "search_query": "",
< "profile_urls": [],
< "max_items": 1000,
< "since": "",
< "until": "",
< "search_sort": "Latest",
< "all_words": [],
< "any_words": [],
< "exact_phrases": [],
< "exclude_words": [],
< "hashtags_any": [],
< "hashtags_exclude": [],
< "from_users": [],
< "to_users": [],
< "mentioning_users": [],
< "lang": "",
< "tweet_type": "all",
< "verified_only": false,
< "blue_verified_only": false,
< "has_images": false,
< "has_videos": false,
< "has_links": false,
< "has_mentions": false,
< "has_hashtags": false,
< "min_likes": 0,
< "min_replies": 0,
< "min_retweets": 0,
< "place": "",
< "geocode": "",
< "near": "",
< "within": ""
<}
<EOF
$curl "https://api.apify.com/v2/acts/altimis~scweet/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'