Connecting Apify to n8n

So I’m having trouble connecting my apify youtube scraper to my n8n workflow. I have asked the AI assistant multiple times, checked my JSON file, checked the HTTP nodes doc on n8n, and everything seems to be right. Here are some of the errors I’m getting…


JSON file:
{
“dateFilter”: “month”,
“downloadSubtitles”: true,
“hasCC”: false,
“hasLocation”: false,
“hasSubtitles”: true,
“is360”: false,
“is3D”: false,
“is4K”: false,
“isBought”: false,
“isHD”: false,
“isHDR”: false,
“isLive”: false,
“isVR180”: false,
“maxResultStreams”: 0,
“searchKeywords”: [
“{{ $json[‘Youtube search prompt’] }}”
],
“maxResults”: 100,
“maxResultsShorts”: 100,
“preferAutoGeneratedSubtitles”: false,
“saveSubsToKVS”: true,
“sortingOrder”: “views”,
“subtitlesFormat”: “srt”,
“subtitlesLanguage”: “en”,
“videoType”: “video”
}

change the searchKeywords to searchQueries and give a try.

I use searchQueries and it works. Looks like they change the parameter

thank you for your advice!