
Indeed job scraper
Pricing
$20.00/month + usage

Indeed job scraper
This is an actively maintained scraper which can extract job postings and hiring company details at scale from any indeed search results page for a fixed monthly rental price. Well documented with examples and demos
1.5 (2)
Pricing
$20.00/month + usage
61
Total users
1.6k
Monthly users
192
Runs succeeded
>99%
Issue response
38 days
Last modified
2 months ago
python api snippet
Open
current snippet suggests to use: "findContacts.contactCompassToken": None,
when i use it, I am getting an error: ApifyApiError: Input is not valid: Field input.findContacts.contactCompassToken must be string
please remove field contactCompassToken from python api example
from apify_client import ApifyClient
Initialize the ApifyClient with your API token
client = ApifyClient("<YOUR_API_TOKEN>")
Prepare the Actor input
run_input = { "scrapeJobs.searchUrl": "https://www.indeed.com/jobs?q=sales&l=New+York%2C+NY&vjk=b28e7b80d0399215", "scrapeJobs.scrapeCompany": False, "count": 10, "useBrowser": True, "proxy": { "useApifyProxy": True, "apifyProxyGroups": [], }, "outputSchema": "raw", "findContacts": False, "findContacts.contactCompassToken": None, "findContacts.position": [ "founder", "director", ], }
Run the Actor and wait for it to finish
run = client.actor("qA8rz8tR61HdkfTBL").call(run_input=run_input)
Fetch and print Actor results from the run's dataset (if there are any)
for item in client.dataset(run["defaultDatasetId"]).iterate_items(): print(item)

In order to quickly identify the reason of your issue, I need to inspect your run.
Please share the URL of the run where you faced this issue. You can find your runs on this page: https://console.apify.com/actors/runs

FYI - I will have to close the issue if I don't get the run URL in next 24 hours
chatmende
Thanks for looking into this!
- you can close the issue, I have solved it.
- i do not see failed runs on my side (because the problem I raised will not initiate any run, so there is nothing to fail.)
I have raised an issue to improve API snippets being used. with snippet provided, I get an error: ApifyApiError: Input is not valid: Field input.findContacts.contactCompassToken must be string
when i comment contactCompassToken, then my runs are succeeding "outputSchema": "raw", "findContacts": False,
"findContacts.contactCompassToken": None,
"findContacts.position": [ "founder", "director", ],