Apify API Payloads
Manage and customize API call payloads for all platforms
Facebook search payload for keyword-based search
Actor ID: danek~facebook-search-ppr
{
"query": "{query}",
"search_type": "posts",
"max_posts": "{limit}",
"recent_posts": true
}
Instagram scraper payload for hashtag/username search
Actor ID: apify~instagram-scraper
{
"search": "{query}",
"searchType": "hashtag",
"resultsLimit": "{limit}",
"resultsType": "posts"
}
Twitter scraper payload for tweet search using Twitter Advanced Search syntax
Actor ID: apidojo~tweet-scraper
{
"searchTerms": [
"{query}"
],
"twitterHandles": [],
"startUrls": [],
"maxItems": "{limit}",
"sort": "Latest",
"start": "{date_from}",
"end": "{date_to}",
"onlyImage": false,
"onlyVideo": false,
"onlyQuote": false,
"onlyVerifiedUsers": false,
"onlyTwitterBlue": false,
"minimumRetweets": 0,
"minimumFavorites": 0,
"minimumReplies": 0,
"tweetLanguage": "",
"geotaggedNear": "",
"withinRadius": "",
"geocode": "",
"placeObjectId": "",
"author": "",
"inReplyTo": "",
"mentioning": "",
"includeSearchTerms": false
}
YouTube
YouTube scraper payload for video search
Actor ID: streamers~youtube-scraper
{
"searchQueries": [
"{query}"
],
"maxResults": "{limit}",
"maxResultsShorts": 0,
"maxResultStreams": 0,
"proxy": {
"useApifyProxy": true
}
}
HarvestAPI LinkedIn Post Search Scraper (No Cookies) — searches posts by keyword with optional reactions/comments.
Actor ID: harvestapi~linkedin-post-search
{
"searchQueries": [
"{query}"
],
"maxPosts": "{limit}",
"sortBy": "date",
"postedLimit": "any",
"postedLimitDate": "{date_from}",
"scrapeReactions": false,
"maxReactions": 5,
"postNestedReactions": false,
"scrapeComments": false,
"maxComments": 5,
"postNestedComments": false,
"profileScraperMode": "short",
"reactionsProfileScraperMode": "short",
"commentsProfileScraperMode": "short"
}