1 credit per call
Method
Input
string
Company domain to search
string
LinkedIn company URL (improves accuracy)
Output
string
The careers page URL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Find the careers page URL for a company
services.company.careers.findPage(params);
const careers = await services.company.careers.findPage({
domain: ctx.thisRow.get("Website"),
companyLinkedinUrl: ctx.thisRow.get("Company LinkedIn"),
});
return careers.url;
// First find the careers page
const careers = await services.company.careers.findPage({
domain: ctx.thisRow.get("Website"),
companyLinkedinUrl: ctx.thisRow.get("Company LinkedIn"),
});
// Then scrape the job listings
const jobs = await services.company.careers.scrapeJobs({
url: careers.url,
maxJobs: 50,
});
return jobs.length;