Track who is hiring, every week
Run the same job searches every Monday, restricted to the last seven days, and count listings by company. A company that suddenly posts ten data roles is telling you something before any press release does.
GET linkedin/jobs | × 80 | 320 cr |
| a month, 20 searches every week | 320 cr |
≈ $0.191 at the 250k pack
const API = 'https://api.scrapefield.com/v1';
const sf = (path, q) =>
fetch(API + '/' + path + '?' + new URLSearchParams(q), {
headers: { Authorization: 'Bearer ' + process.env.SCRAPEFIELD_KEY },
}).then((r) => r.json());
const searches = [
{ query: 'data engineer', location: 'Berlin' },
{ query: 'data engineer', location: 'London' },
{ query: 'backend engineer', workplace_type: 'remote' },
];
const byCompany = {};
for (const s of searches) {
const q = { ...s, posted_within_days: 7, limit: 25 };
const { data } = await sf('linkedin/jobs', q);
for (const job of data) {
const name = job.company.name;
byCompany[name] = (byCompany[name] ?? 0) + 1;
}
}
const top = Object.entries(byCompany).sort((a, b) => b[1] - a[1]);
console.table(top.slice(0, 10));