All scrapers

E-commerce

Nordstrom

nordstrom.com

86.5% Success rate
15.5s Avg response
Shape (F5) Protection
6,000 calls Measured over

Shape Security is the toughest protection in our benchmark: it re-fingerprints the browser mid-session and invalidates tokens aggressively. We solve it with a warmed browser pool that amortises the challenge across many page loads. At 86.5% this is not our best target, and we would rather say so than round it up.

What you can extract

  • Product name, brand and style number
  • Price and sale price
  • Size and colour availability
  • Rating and review count
  • Category and search listings

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.nordstrom.com%2F&parsed_data=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.nordstrom.com/", "parsed_data": True},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.getPageSource({
  url: 'https://www.nordstrom.com/',
  parsedData: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.