Clair API
SERP & Search API→Results from Google Search, News, and Maps.News & Media API→Live publisher pages, fetched when you call.Jobs & Hiring API→Live job listings from Glassdoor, Indeed, and Greenhouse.E-commerce API→Live listings from public marketplaces.Company Data & Reviews API→Public company profiles, reviews, ratings, and product launches.Contact & Lead Data API→Emails, phones, and social URLs from public sites.
Browse the full catalog →Missing a data surface? Ask for one →

Explore resources

Use casesWays to build with Clair data.ComparisonsClair against other APIs, sourced.GlossaryWeb data terms, with real fields.

Use cases

View all →
Amazon price monitoring→Prices, Buy Box sellers, and stock per ASIN.Google rank tracking→Daily positions for your keywords, with SERP features.Lead enrichment from company websites→Emails, phones, and socials a domain publishes.Trustpilot review monitoring→New reviews, TrustScore, and replies per company.Product Hunt launch tracking→Daily launches, makers, and websites by topic.
PricingDocs
Dashboard

Use cases / Amazon Products API

Amazon price monitoring

Record the price, the seller holding the Buy Box, and stock for a list of Amazon products once or several times a day, then alert on changes. This is the pipeline behind repricers, MAP enforcement, and competitor price tracking, built on three Clair endpoints.
Try the Amazon Products API →

Who

Who runs this, and what for

TeamWhat they decide with it
BrandsWhich sellers undercut the minimum advertised price, and when the brand loses the Buy Box on its own products.
Marketplace sellersWhen a competitor changes price on a shared ASIN, to reprice before losing the Buy Box.
Retail analystsHow prices and discounts move across a category over weeks, for pricing studies and reports.

Pipeline

The calls, step by step

  1. 01Build the ASIN list

    Start from the products you care about. If you have barcodes, the GTIN lookup endpoint turns a UPC, EAN, or ISBN into its ASIN. To watch a category instead, search with category_id or read the best-seller list, and keep the ASINs from results[].

    GET /v1/search?engine=amazon&q=wireless+mouse&prime=true&page=1 · results.0

    {
      "position": 1,
      "asin": "B004YAVF8I",
      "title": "Logitech M185 Compact Ambidextrous 2.4 GHz Wireless Mouse - Swift Grey",
      "url": "https://www.amazon.com/dp/B004YAVF8I",
      "price_text": "$13.99",
      "price": 13.99,
      "currency": "USD",
      "original_price_text": "$17.99",
      "original_price": 17.99,
      "rating": 4.4,
      "ratings_count": 45089,
      "badge": "Overall Pick",
      "sales_volume": "10K+ bought in past month",
      "image_url": "https://m.media-amazon.com/images/I/51WN5aXZWIL._AC_UY218_.jpg",
      "sponsored": false,
      "is_prime": true,
      "delivery": "FREE delivery Tomorrow, Sep 26",
      "coupon": null,
      "other_offers": {
        "min_price_text": "$6.58",
        "min_price": 6.58,
        "count": 8
      }
    }
    Recorded response. Live values differ.
  2. 02Snapshot each product on a schedule

    Call the product endpoint for each ASIN with the zip_code of the market you sell into. It returns the Buy Box price, the list price Amazon strikes through (original_price), availability, and the Buy Box seller in sold_by. Store every response with a timestamp: Amazon has no price history to fetch later, so your snapshots are the history.

    GET /v1/product?engine=amazon&asin=B0CF3VGQFL · product

    {
      "asin": "B0CF3VGQFL",
      "title": "Redragon Mechanical Gaming Keyboard",
      "brand": "Redragon",
      "authors": [],
      "url": "https://www.amazon.com/dp/B0CF3VGQFL",
      "price_text": "$29.99",
      "price": 29.99,
      "currency": "USD",
      "original_price_text": null,
      "original_price": null,
      "availability": "In Stock",
      "sold_by": {
        "id": "A3ODNP7R491D62",
        "name": "Redragon Official"
      },
      "ships_from": "Amazon",
      "delivery": "FREE delivery September 28 - 30 on orders shipped by Amazon over $35",
      "delivery_location": "New York 10001",
      "rating": 4.3,
      "ratings_count": 6819,
      "rating_distribution": {
        "1": 8,
        "2": 4,
        "3": 7,
        "4": 12,
        "5": 69
      },
      "image_url": "https://m.media-amazon.com/images/I/71Bk2A2WmOL._AC_SL1500_.jpg",
      "images": [
        "https://m.media-amazon.com/images/I/71Bk2A2WmOL._AC_SL1500_.jpg"
      ],
      "bullets": [
        "11 backlight modes and hot-swappable switches."
      ],
      "description": null,
      "categories": [
        "Electronics",
        "Computers & Accessories",
        "Keyboards"
      ],
      "best_sellers_rank": [
        {
          "rank": 12,
          "category": "PC Gaming Keyboards"
        }
      ],
      "specifications": {
        "Switch Type": "Linear",
        "Number of Keys": "104"
      },
      "identifiers": {
        "isbn_10": null,
        "isbn_13": null,
        "upc": null,
        "model_number": "K671"
      },
      "variants": [
        {
          "asin": "B0FJL64Y65",
          "selected": false,
          "attributes": {
            "Color": "Deep Black"
          }
        }
      ],
      "formats": []
    }
    Recorded response. Live values differ.
  3. 03Read every seller when the Buy Box moves

    When sold_by changes or the price drops past a threshold, call the offers endpoint for that ASIN. It lists every seller's price, condition, delivery, and rating, which tells you who undercut and by how much. Calling it only on change keeps the monthly count close to the product calls.

    GET /v1/product/offers?engine=amazon&asin=1098145356 · offers.0

    {
      "position": 1,
      "condition": "New",
      "price_text": "$40.94",
      "price": 40.94,
      "currency": "USD",
      "original_price_text": "$65.99",
      "original_price": 65.99,
      "delivery": "$33.04 delivery October 14 - 30.",
      "ships_from": "Pensive Keyboard Books",
      "seller": {
        "id": "A245R8VFMDKNT1",
        "name": "Pensive Keyboard Books",
        "rating": 3,
        "ratings_count": 225,
        "positive_percent": 52
      }
    }
    Recorded response. Live values differ.

Code

A script to start from

price_snapshot.py

# Daily price and Buy Box snapshot for a list of ASINs.
# Appends one row per ASIN to prices.csv; diff consecutive days to alert.
import csv, datetime, os, requests

API = "https://api.clair.im"
HEADERS = {"Authorization": f"Bearer {os.environ['CLAIR_API_KEY']}"}
ASINS = ["B0CF3VGQFL", "B004YAVF8I", "B015NBTAOW"]
ZIP = "10001"  # prices and the Buy Box follow the delivery location

def product(asin):
    r = requests.get(f"{API}/v1/product", headers=HEADERS, timeout=60,
                     params={"engine": "amazon", "asin": asin, "zip_code": ZIP})
    r.raise_for_status()
    return r.json()["product"]

today = datetime.date.today().isoformat()
with open("prices.csv", "a", newline="") as f:
    out = csv.writer(f)
    for asin in ASINS:
        try:
            p = product(asin)
        except requests.HTTPError as e:
            print(asin, e.response.status_code, e.response.text[:200])
            continue
        seller = p["sold_by"] or {}
        out.writerow([today, asin, p["price"], p["currency"],
                      p["original_price"], p["availability"],
                      seller.get("id"), seller.get("name"),
                      p["rating"], p["ratings_count"]])

Set CLAIR_API_KEY to a key subscribed to the Amazon Products API. Each call is one request against that API's monthly quota.

Cost

What it costs per month

ScheduleRequestsPlanPer monthPer 1,000
100 ASINs, once a day100 × 30 days = 3,000 product calls, plus about 300 offers calls on Buy Box changes (10%).3,300Pro$49.99$15.15
500 ASINs, once a day500 × 30 = 15,000 product calls, plus about 1,500 offers calls.16,500Ultra$166.17$10.07
200 ASINs, every 4 hours200 × 6 checks × 30 = 36,000 product calls, plus about 3,600 offers calls.39,600Mega$399$10.08
1,000 ASINs, twice a day1,000 × 2 × 30 = 60,000 product calls, plus about 6,000 offers calls.66,000Mega$531.84$8.06
The cheapest Clair plan for each volume: the monthly fee plus overage past the included requests. USD, before tax. The free tier covers 200 requests a month for trying the pipeline.

Measured

Response times

Amazon Products API
Succeeded6 of 7
Median response time15.1 s
95th percentile18.5 s
Had price83%
Had availability100%
Had sold by100%
Had rating100%
Had best sellers rank100%
Had variants83%
Amazon product detail pages on amazon.com, delivery to ZIP 10001. ASINs from the recorded examples. 7 requests, one at a time, on September 27, 2026.

Limits

What to plan for

  • Prices are the ones a shopper at zip_code sees. Without zip_code Amazon picks a default location, which may not be your market, and a different location can mean a different Buy Box winner.
  • Each call reads the live page, so each snapshot is billed. There is no cache and no bulk history: to have last month's prices you need to have collected them last month.
  • Coupons are shown on search result cards (coupon) rather than on the product response. If coupon-adjusted prices matter, add a search call for the product.
  • Ten marketplaces are supported: us, gb, ca, au, in, de, es, nl, be, and jp. The same ASIN can differ, or not exist, across them.
  • A request that fails on Clair's side (5xx) is refunded. Retry it; do not treat a failed snapshot as a price change.

FAQ

Common questions

How often should I check prices?

Match it to how you act on changes. Once a day is enough for reports and MAP checks. Repricing against active competitors usually needs every few hours on the ASINs that change, and daily on the rest.

Does this show the price for Prime members?

It shows the price a signed-out shopper at that delivery location sees. Member-only deals are not visible without an account.

Can I get historical Amazon prices?

No. Clair reads the page as it is now. Start collecting snapshots today and the history builds from there.

What does it cost per product?

One product check is one request. The table above prices common schedules on the cheapest Amazon plan for each volume.

Related

Keep reading

APIs

  • Amazon Products API

Glossary

  • ASIN
  • Buy Box
  • Best Sellers Rank
  • Browse node

Run it on your own products

200 requests a month free on each API, no card. Enough to run the pipeline on a short list before choosing a plan.

Get API Key →Compare plans
Clair API

Developer APIs for public search, editorial news, active job postings, website contacts, reviews, and product launches—with provenance, freshness, and coverage boundaries kept visible.

contact@serinlabs.com@clair_api

Products

SERP & Search APINews & Media APIJobs & Hiring APIE-commerce APICompany Data & Reviews APIContact & Lead Data API

Documentation

OverviewQuickstartGoogle Search APIGoogle News APIGlassdoor APIContacts APITrustpilot APIProduct Hunt APIPricing

Resources

Resource catalogUse casesComparisonsGlossary

Legal

TermsPrivacy
© 2026 Serin Technologies, LLC