Irmu
Search & Maps

Google Shopping API

Product listings, merchant offers and price comparisons.

Start freeGET https://app.irmu.com/api/crawl15 credits
Why

Why teams scrape Google Shopping

Google Shopping holds some of the most commercially useful public data on the web, and almost none of it is available through a stable official feed at the volume real products need. Rate limits, partner-only access and shifting page structures mean teams either give up on the source or maintain a fragile scraper that breaks every few weeks.

Shopping results aggregate offers from hundreds of merchants in one place, making them the fastest way to see where a product sells and at what price — but the surface is heavily personalized and geo-specific.

Irmu removes the infrastructure question entirely. One authenticated request handles proxy selection, browser rendering, anti-bot challenges and retries, and AI Extract turns the resulting page into validated JSON against a schema you define. You get product_title, price, currency, merchant, rating, shipping, product_id, condition without writing or maintaining a single selector, and the same endpoint, quota and observability model you already use for every other source.

Use cases

What it powers

  • Price benchmarking

    Compare your price against every listed merchant per market.

  • Merchant discovery

    Find unauthorized or grey-market sellers of your products.

  • Assortment analysis

    See which competitor SKUs are listed in which countries.

  • Feed QA

    Verify your own listings render with the right price and imagery.

Data

Fields available

Everything below comes back typed and validated against your schema.

product_title

Listed product name

price

Offer price

currency

Offer currency

merchant

Selling merchant

rating

Product rating

shipping

Shipping cost or terms

product_id

Google product identifier

condition

New, used or refurbished

Request

One call, no selectors

request.sh
curl -G https://app.irmu.com/api/crawl \
  -H "Authorization: Bearer $IRMU_API_KEY" \
  --data-urlencode "url=https://www.google.com/search?tbm=shop&q=electric+toothbrush" \
  --data-urlencode "premium=true" \
  --data-urlencode "ai_query=Extract product_title, price, currency, merchant, rating, shipping as JSON"
Response

Validated JSON

response.json
{
  "url": "https://www.google.com/search?tbm=shop&q=electric+toothbrush",
  "domain": "www.google.com",
  "premium": true,
  "js": true,
  "ai_query": "Extract product_title, price, currency, merchant, rating, shipping as JSON",
  "credits_charged": 15,
  "status": "completed",
  "data": {
    "product_title": "Sonicare 9900 Prestige",
    "price": 289.95,
    "currency": "USD",
    "merchant": "Best Buy",
    "rating": 4.5
  },
  "error": null
}
SDKs

Copy, paste, ship

import os, requests

res = requests.get(
    "https://app.irmu.com/api/crawl",
    params={
        "url": "https://www.google.com/search?tbm=shop&q=electric+toothbrush",
        "premium": "true",
        "ai_query": "Extract product_title, price, currency, merchant as JSON",
    },
    headers={"Authorization": f"Bearer {os.environ['IRMU_API_KEY']}"},
)

print(res.json()["data"])
Pricing

Simple credits

Per listing page

15 credits

Requests we fail to serve for internal reasons, or to domains we do not cover, are not billed.

See full pricing →
FAQ

Google Shopping API questions

Start extracting Google Shopping data today

200 free credits every month. No card, no sales call.