All scrapers

Grocery & delivery

Instacart Scraper

instacart.com

100% Success rate
4s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over

Instacart aggregates grocery catalogs from US retailers with per-store pricing and availability. ScrapeUnblocker renders its store and product pages as a shopper would see them and returns the price, availability and retailer for each item, holding a clean 100% at around four seconds a page.

What you can extract

  • Product name, brand and size
  • Price and per-unit price
  • Retailer and store location
  • Availability and stock status
  • Product images and listing URL

How to scrape it

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

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.instacart.com/store/costco/storefront", "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.instacart.com/store/costco/storefront',
  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.