Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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;