Grainger Scraper — Product Prices, SKU, Specs & Stock avatar

Grainger Scraper — Product Prices, SKU, Specs & Stock

Pricing

from $2.19 / 1,000 product results

Go to Apify Store
Grainger Scraper — Product Prices, SKU, Specs & Stock

Grainger Scraper — Product Prices, SKU, Specs & Stock

Grainger scraper for industrial MRO catalog data: product URLs, item # / SKU, keyword search and category listings. Extract item numbers, brand, list price, technical specs, images and availability — Grainger API alternative for procurement and MCP / Python / Node pipelines.

Pricing

from $2.19 / 1,000 product results

Rating

0.0

(0)

Developer

Andrej Kiva

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Industrial MRO catalog data — Grainger product enrichment next to DigiKey and RS Online for procurement, price monitoring, and MRO / facilities workflows.

DigiKeyRS OnlineGrainger
DigiKey Product ScraperRS Online ScraperGrainger Scraper ◄── you are here

Disclaimer: Unofficial Actor for publicly accessible Grainger product and catalog pages. Grainger and related names are trademarks of W.W. Grainger, Inc. Not affiliated with, sponsored by, or endorsed by W.W. Grainger. Provided for informational and research purposes only. You are responsible for complying with applicable laws and Grainger terms of use. Public list prices may differ from contract / account pricing.

Use this Grainger scraper as a Grainger API alternative to scrape industrial MRO products into clean JSON. Look up product URLs, Grainger item # (SKU), keywords / manufacturer part numbers, or category listings, then export item number, brand, list price, technical specifications, images, UNSPSC, and availability for Python, Node.js, and MCP / AI assistants.

Ideal for procurement teams, MRO price monitoring, CMMS / ERP catalog sync, and multi-distributor sourcing pipelines alongside DigiKey and RS Online.


Key Features

  • Grainger product scraper — enrich PDPs from product detail URLs
  • SKU / item # lookup — resolve Grainger item numbers to full product records
  • Keyword search — catalog queries and manufacturer part-number searches
  • Category crawl — paginated /category/… assortment harvest
  • Optional PDP enrich — upgrade listing rows to full specs + price
  • Specs map — technical attributes as key/value pairs and attribute rows
  • Hardened browser path — Camoufox + sticky residential for public catalog pages
  • Region-aware base URL — US or Canada storefront host

Use Cases

Use caseWhat you getWhy it helps
MRO price monitoringItem #, brand, list priceTrack industrial supply unit costs over time
SKU / catalog enrichmentSpecs, images, UNSPSC, modelFill ERP / CMMS product master data
Assortment harvestCategory / search listing rowsBuild safety, electrical, abrasives shortlists
Cross-distributor compareSame model / MPN vs DigiKey / RSMulti-source procurement research
Facilities / maintenance sourcingPublic availability signalsSpot stock cues before ordering

When to use this Actor

  • You need a Grainger product scraper for item #, brand, list price, and specs
  • Batch SKU enrichment or keyword / category crawls for MRO assortment
  • Export dataset JSON into Python, Node.js, or MCP agents for procurement workflows

When not to use this Actor

  • Contract / punchout / EDI enterprise pricing that requires a Grainger account
  • Cart / checkout / quote automation
  • Other distributors — use sibling Actors for DigiKey / RS Online / Rockwell

Input Parameters

ParameterTypeDefaultDescription
productUrlsArrayGrainger product detail URLs
skusArrayGrainger item # / SKU list
keywordsArrayCatalog keyword or MPN queries
categoryUrlsArrayCategory listing URLs (or bare paths)
maxItemsInteger50Maximum billable dataset items
maxPagesInteger1Max listing pages per query/URL (1–40)
enrichListingProductsBooleanfalseFetch full PDP for each listing row
baseUrlStringhttps://www.grainger.comRegional storefront
requestDelaySecsNumber1.5Delay between HTML navigations
browserEngineStringautoauto / camoufox / firefox
proxyConfigurationObjectResidential USSticky RESIDENTIAL required for stable access

Input Example — PDP + SKU

{
"productUrls": [
"https://www.grainger.com/product/SQUARE-D-Terminal-Block-End-Barrier-5B359"
],
"skus": ["5B359", "3FRU1"],
"maxItems": 25,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "US"
}
}

Input Example — category / keyword listings

{
"keywords": ["nitrile gloves"],
"categoryUrls": ["safety/eye-face-protection"],
"maxItems": 100,
"maxPages": 3,
"enrichListingProducts": false
}

Output Format

recordTypeMeaning
productFull product enrichment
listingSearch or category row
errorFetch or parse failure

Key product fields

FieldDescription
sku / productIdGrainger item number
manufacturerProductNumberManufacturer model / MPN
brandBrand name
titleProduct title
unitPrice / unitPriceValueList price text + parsed number
currencyISO currency when known
availability / inStockPublic stock signal when present
specificationsTechnical key/value map
attributesSpecs as {name, value} rows
breadcrumbCategory path
imagesImage URLs
unspscUNSPSC when published

Output Example

{
"source": "grainger",
"recordType": "product",
"url": "https://www.grainger.com/product/SQUARE-D-Terminal-Block-End-Barrier-5B359",
"sku": "5B359",
"productId": "5B359",
"manufacturerProductNumber": "9080GP6B",
"brand": "SQUARE D",
"title": "SQUARE D Terminal Block End Barrier: Natural, DIN Rail Mount",
"unitPrice": "$2.74",
"unitPriceValue": 2.74,
"currency": "USD",
"unspsc": "39121410",
"specifications": {
"Color": "Natural",
"Material": "Nylon",
"Mounting Type": "DIN Rail Mount"
},
"images": ["https://static.grainger.com/rp/s/is/image/Grainger/5B361_AS01"],
"scrapedAt": "2026-08-10T08:00:00Z"
}

Integration examples

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('crawloop/grainger-scraper').call({
skus: ['5B359'],
maxItems: 10,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("crawloop/grainger-scraper").call(
run_input={"skus": ["5B359"], "maxItems": 10}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

cURL

curl -X POST "https://api.apify.com/v2/acts/crawloop~grainger-scraper/runs?token=YOUR_APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{"skus":["5B359"],"maxItems":10}'

MCP and AI assistants

Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/grainger-scraper.

Example prompts:

  • "Run Grainger Scraper for item 5B359 and return brand, list price, UNSPSC, and specifications"
  • "Scrape Grainger category safety/eye-face-protection for 50 listing rows as JSON"
  • "Chain DigiKey Product Scraper then Grainger Scraper to compare distributor prices for the same MPN"

Suite next step

After Grainger enrichment, compare electronics / industrial distributor coverage with DigiKey Product Scraper or RS Online Scraper. For automation OEM parts, continue with Rockwell Product Scraper.


FAQ

Is this a Grainger API?
No. It is an unofficial Grainger API alternative that scrapes publicly visible catalog pages into a structured dataset.

Do I need a Grainger account?
No for public list-price / catalog fields. Contract prices and account-only stock are out of scope.

Can I scrape Grainger with Python or Node.js?
Yes — use the Apify client examples above, or call the Actor from MCP / AI assistants.

Why residential proxy?
Public catalog pages are bot-protected. Sticky Apify RESIDENTIAL US (or CA) sessions are required for reliable access.

Why did my broad keyword return few products or an error?
Some broad queries redirect to a category hub. Use a more specific keyword, an item #, or a categoryUrls path.

Listing vs product records?
listing rows come from search/category pages. Enable enrichListingProducts (or pass productUrls / skus) for full PDP fields including richer specs and prices.