$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "enableYouTube": true,
< "youtubeUrls": [
< "https://www.youtube.com/@TED"
< ],
< "enableYouTubeTranscripts": false,
< "enableYouTubeComments": false,
< "youtubeMaxComments": 20,
< "enableInstagram": false,
< "enableInstagramReels": true,
< "enableInstagramPosts": true,
< "enableInstagramAnalytics": true,
< "enableInstagramComments": false,
< "instagramMaxComments": 20,
< "enableTikTok": false,
< "enableTikTokComments": false,
< "tiktokMaxComments": 20,
< "enableReddit": false,
< "enableRedditComments": false,
< "redditMaxComments": 20,
< "enableRedditProfiles": false,
< "enableLinkedIn": false,
< "contentLimitPerSource": 10,
< "maxItems": 30,
< "minimumBaselineItems": 8,
< "minimumOutlierScore": 2,
< "includeAllContent": false,
< "aiAnalysis": false,
< "topOutliersPerSource": 5,
< "proxyConfiguration": {
< "useApifyProxy": true,
< "apifyProxyGroups": [
< "RESIDENTIAL"
< ]
< }
<}
<EOF
$curl "https://api.apify.com/v2/actors/rigelbytes~social-media-content-outlier/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'