Amazon API

Amazon Search API

Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response.

POST/v1/run/amazon.search
Uptime
100.00%
30d · 210 calls
Requests
212
30d · weekly, last 12 wks
Response
5.5s
median · 30d

Try it

Make your first request

requireFieldsarray
Optional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `offersCount`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a product that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "asin": "example",
        "currency": "USD",
        "image": "https://example.com/image.jpg",
        "isSponsored": true,
        "listPrice": 19.99,
        "offersCount": 12500,
        "position": 1,
        "price": 19.99,
        "rating": 4.6,
        "reviewsCount": 12500,
        "title": "Example title"
      }
    ]
  },
  "found": true
}
Response interface
interface AmazonSearchResponse {
  data: {
    items: {
      asin: string;
      currency?: string;
      image?: string;
      isSponsored?: boolean;
      listPrice?: number | null;
      offersCount?: number | null;
      position?: number;
      price?: number;
      rating?: number;
      reviewsCount?: number;
      title: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/amazon.search
curl -X POST https://api.getanyapi.com/v1/run/amazon.search \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":3,"url":"https://www.amazon.com/s?k=laptop"}'
FieldTypeExample value
Request body
urlstring"https://www.amazon.com/s?k=laptop"Amazon search or category URL to pull results from (e.g. https://www.amazon.com/s?k=gaming+mouse).
limitinteger3Maximum number of results to return (1-20, default 20).
requireFieldsarrayOptional; omit it and routing is unchanged, with the cheapest source serving. Name the output fields this request must be able to return, for example `offersCount`, and it is served only by a source that returns every one of them. Fields you do not name are still returned whenever the serving source has them. This can raise your price: when the cheapest source cannot return a named field, a dearer source serves, and you are quoted and charged its price. A named field can still be absent on a product that genuinely lacks it. Naming a combination that no single source returns together is refused as invalid input, with no charge.
Response
dataobjectSearch result wrapper, or null when nothing matched.
data.itemsobject[]Matching Amazon product records. Populated whenever the provider has data for the entity.
data.items[].asinstringAmazon Standard Identification Number; use it with the Amazon Products by ASIN SKU for full detail. Populated whenever the provider has data for the entity.
data.items[].currencycan requirestringPrice currency symbol or code, e.g. "$".
data.items[].imagecan requirestringPrimary product thumbnail image URL.
data.items[].isSponsoredcan requirebooleanTrue when the result is a sponsored placement.
data.items[].listPricecan requirenumberPre-discount list price when on sale, 0 when not discounted, or null when the serving source does not publish it.
data.items[].offersCountcan requireintegerNumber of available offers, or null when the serving source does not publish it.
data.items[].positioncan requireinteger1-based position of the result on the search page.
data.items[].pricecan requirenumberCurrent price as a numeric amount; 0 when no offer is available.
data.items[].ratingcan requirenumberAverage star rating, 0-5; 0 when unrated.
data.items[].reviewsCountcan requireintegerNumber of customer reviews; 0 when none.
data.items[].titlestringProduct title. Populated whenever the provider has data for the entity.
foundbooleanTrue when the search returned at least one product.
Price
Price per requestUSD$0.0005
Price /1k reqUSD$0.50

FAQ

About the Amazon Search API

The AnyAPI Amazon Search API returns Amazon search data as normalized JSON from one POST call to /v1/run/amazon.search. Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Amazon search calls through AnyAPI succeeded, with a median response time of 5.5 seconds across 210 measured calls.

It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Search Amazon from any search or category URL and get up to 20 matching products (title, price, rating, and thumbnail) in one normalized response. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Amazon search calls through AnyAPI succeeded, with a median response time of 5.5 seconds across 210 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.