npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

indeed-scraper-api

v0.0.1

Published

Node.js client for scraping Indeed job listings using the ScrapingBee web scraping API.

Readme

Indeed Scraper API (Node.js)

Scrape Indeed job listings from Node without running a browser or parsing HTML. This package wraps the ScrapingBee web scraping API: give it a role and a city, and it resolves to a JSON array of jobs. Rendering and residential proxies are handled on ScrapingBee's side.

Why a wrapper at all? Indeed builds its listings in JavaScript and screens automated requests, so fetching the raw HTML yourself gets you an empty shell. This Indeed scraper turns on headless rendering and residential proxies per request, then extracts the fields with server-side rules so your code stays a few lines long.

Install

npm install indeed-scraper-api

Node 14 or newer. axios is pulled in as a dependency.

Usage

const { IndeedScraper } = require('indeed-scraper-api');

const scraper = new IndeedScraper({ apiKey: 'YOUR_SCRAPINGBEE_API_KEY' });

(async () => {
  const { jobs } = await scraper.search('data engineer', { location: 'Austin', start: 0 });
  jobs.forEach((job) => {
    console.log(`${job.title} @ ${job.company} (${job.location})`);
  });
})();

Grab an API key at ScrapingBee; signup includes 1,000 free credits and needs no card.

Options

search(query, options) takes the query as the first argument and an options object second. Indeed paginates in increments of 10, so start: 10 is the second page.

| Option | Default | What it does | |---|---|---| | location | '' | City or region for the search | | start | 0 | Pagination offset (10 per page) | | renderJs | true | Render the page in a headless browser | | premiumProxy | true | Send the request over residential proxies | | countryCode | 'us' | Proxy country | | wait | 5000 | Milliseconds to wait after the page loads | | extractRules | JOB_RULES | Swap in your own field selectors |

Returned data

Each job object mirrors the selectors from ScrapingBee's data extraction rules:

{
  title: 'Data Engineer',
  company: 'Globex',
  location: 'Austin, TX',
  url: '/rc/clk?jk=...'
}

Scraping a single Indeed URL

Use scrape(url, options) for a specific job or company page. It returns rendered HTML by default, or JSON when you supply your own extractRules:

const html = await scraper.scrape('https://www.indeed.com/viewjob?jk=SOME_ID');

Credits

Residential proxies plus JavaScript rendering put each call at 25 ScrapingBee credits. If a target does not need residential IPs, set premiumProxy: false for cheaper datacenter requests. The full table is on ScrapingBee pricing.

Notes

This is an independent, community-built client on top of the public ScrapingBee API. It is not affiliated with Indeed. For the underlying walkthrough, read ScrapingBee's Indeed scraping guide.

License

MIT