
🔥 LinkedIn Jobs Scraper
Pricing
$29.99/month + usage

🔥 LinkedIn Jobs Scraper
ℹ️ Designed for both personal and professional use, simply enter your desired job title and location to receive a tailored list of job opportunities. Try it today!
3.6 (14)
Pricing
$29.99/month + usage
372
Total users
13K
Monthly users
1.6K
Runs succeeded
>99%
Issues response
68 days
Last modified
4 months ago
Crawling hardcoded company and company ID
Closed
seems Google and other company are hard-coded, I am not able to get the result due to that information in Input by default, whereas those information was optional in input screen and I had removed it, still it is showing in the run log, can you look into it?

Hi there,
Thanks for reaching out!
Please share your run URL with us so we can take a closer look. In the meantime, you can try editing the input manually to remove any hardcoded companies or IDs — that should get things working as expected.
Looking forward to your reply!
Best, Bebity
gnomonic_laptop
https://console.apify.com/actors/BHzefUZlZRKWxkTck/runs/N8tkJr3jn7fABODQk#input
I tried doing it but somehow i am not able to see edit field to remove company name, I am using n8n automation to run the actor.
I have attached input code for your reference.

✅ Fix for your Apify + n8n input issue
You're not getting results because your input includes filters like:
{ "companyName": ["Google", "Microsoft"], "companyId": ["76987811", "1815218"] }
These companies don’t currently list "CEO" jobs in India — so the actor returns nothing.
🛠 Solution: Create a clean task
-
Go to Apify Console – Tasks
-
Click Create new task
-
Use this input instead:
{ "proxy": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }, "contractType": "F", "experienceLevel": "5", "location": "India", "title": "CEO", "publishedAt": "", "rows": 50 }
- Save the task
▶️ Use in n8n
In your Apify node, select this new task or
Use an HTTP Request node with:
POST https://api.apify.com/v2/actor-tasks/<TASK_ID>/runs-sync-get-dataset-items?token=<API_TOKEN>
And the same JSON body shown above.
gnomonic_laptop
It is sorted, thank you for the prompt response.