Call the hosted Actor over the Apify REST API. Replace YOUR_TOKEN with your Apify API token.
curl -X POST \
"https://api.apify.com/v2/acts/logiover~youtube-influencer-discovery-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"searchQueries": ["home workout", "healthy recipes"],
"minSubscribers": 5000,
"maxSubscribers": 100000,
"requireEmail": true
}'curl -X POST \
"https://api.apify.com/v2/acts/logiover~youtube-influencer-discovery-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN&format=csv" \
-H "Content-Type: application/json" \
-d '{"searchQueries":["personal finance"],"maxSubscribers":100000,"requireEmail":true}' \
-o influencers.csvcurl -X POST \
"https://api.apify.com/v2/acts/logiover~youtube-influencer-discovery-scraper/runs?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"searchQueries":["tech reviews","home barista"],"sortBy":"engagement_desc","maxChannelsPerQuery":40,"maxResults":200}'curl -X POST \
"https://api.apify.com/v2/acts/logiover~youtube-influencer-discovery-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"channels":["@nischa","https://www.youtube.com/@mkbhd","UCBJycsmduvYEL83R_U4JriQ"],"recentVideosForStats":12}'curl "https://api.apify.com/v2/actor-runs/RUN_ID?token=YOUR_TOKEN"
curl "https://api.apify.com/v2/datasets/DATASET_ID/items?token=YOUR_TOKEN&format=json"