Query to evidence set
Search a marketplace, preserve placement, then resolve the products that deserve deeper analysis.
search -> product -> offersProduct research
Move from a marketplace search to stable product records, variants, offers, reviews, and category context through one normalized Amazon data contract.
/api/amazon
GET/api/amazon/searchGET/api/amazon/productGET/api/amazon/product/variantsGET/api/amazon/categoriesReliable product research preserves where and when every fact was observed. Glade API keeps marketplace, identifier, freshness, and request metadata attached, so teams can compare evidence without silently mixing locales or time windows.
Start with the question you have. Each card is a practical research chain, not a separate product or integration.
Search a marketplace, preserve placement, then resolve the products that deserve deeper analysis.
search -> product -> offersConnect size, color, and configuration siblings without treating them as unrelated listings.
product -> variantsMove safely between ASIN and GTIN when joining Amazon records to an external catalog.
gtin-from-asin -> asin-from-gtinResolve the record before comparing condition, seller, price, delivery, and availability.
product -> offersNavigate a normalized taxonomy before drilling into a category and its current products.
categories -> categoryPlace review evidence and best-seller position beside the product record without merging their meanings.
product -> reviews -> bestsellersFour moves turn an open-ended query into a bounded set of comparable Amazon records.
Store request and freshness metadata with the evidence. Reproducible research depends on knowing the selected market and observation time.
GET /api/amazon/searchRun a bounded marketplace search with documented filters while preserving organic and sponsored placement.
bounded pages · 15 minute cacheGET /api/amazon/productTurn candidate ASINs into normalized titles, identifiers, images, ratings, and availability context.
one record per ASINGET /api/amazon/product/variantsInspect variant dimensions and related ASINs before calculating assortment or coverage.
variant cache · 12 hoursGET /api/amazon/product/reviewsRetrieve explicit review pages and rating filters, keeping source records separate from your interpretation.
bounded pages · 1 hour cacheUse only the operations your research question needs. Every API keeps the same authentication and response envelope.
Product research becomes fragile when data from different locales, timestamps, and parsers is treated as directly comparable.
| Capability | Glade API | Typical setup |
|---|---|---|
| Marketplace coverage | One key works across 13 supported Amazon marketplaces. | A locale-specific integration or scraper configuration per marketplace. |
| Response shape | One versioned response envelope and normalized operation catalog. | Different page shapes, selectors, and field names maintained by hand. |
| Identifier joins | Documented ASIN and GTIN conversion operations use validated inputs. | Identifier mappings are inferred from page content or maintained as custom lookup logic. |
| Freshness | Fetched time, cache state, and operation-specific TTLs travel with the result. | Freshness is inferred from a job timestamp or omitted entirely. |
| Failure handling | Typed failures stay separate from empty or out-of-stock results. | Retries, proxy failures, parser failures, and empty pages can look alike. |
| Pricing model | Successful normalized operations consume one published request unit. | Proxy, browser, compute, storage, and maintenance costs are metered separately. |
Yes. Use product search to produce a bounded candidate set, then resolve selected ASINs through product details.
Yes. The search contract keeps placement semantics explicit so downstream ranking work does not silently mix the two.
Use the validated ASIN-to-GTIN and GTIN-to-ASIN operations, then retain the marketplace and request metadata used for the mapping.
Keep currency, locale, delivery context, and observation time visible. Normalize display and reporting after preserving those source facts.
The source API returns bounded review records. Any semantic analysis should be an explicit downstream step with its own retention and evaluation policy.
Persist the request parameters, request ID, schema version, cache state, and fetched time alongside the records used in a decision.
Ask AI about Glade API
Use a documented search, resolve the products you care about, and keep every observation auditable.
Request
curl -G "https://gladeapi.com/api/amazon/search" \
-H "API-KEY: glade_live_YOUR_API_KEY" \
--data-urlencode "searchTerm=mechanical%20keyboard" \
--data-urlencode "domain=US" \
--data-urlencode "page=1"curl -G "https://gladeapi.com/api/amazon/product" \
-H "API-KEY: glade_live_YOUR_API_KEY" \
--data-urlencode "asin=B0D1XD1ZV3" \
--data-urlencode "domain=US"Both calls use the same key, response envelope, request metadata, and documented failure model.