Public Playground

Preview the endpoint before sending a live request

Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.

Playground

Search Amazon products API Playground

Returns normalized Amazon search result cards for `amazon.com`.

GETapiKey3 credits/requestamazon.searchResponseDocAmazon

Endpoint

Choose one catalog endpoint for this request.

3 shown
GETapiKey3 credits/requestamazon.searchResponseDocAmazon
GET /amazon/search

Search Amazon products

Returns normalized Amazon search result cards for `amazon.com`.

API key required. Paste a full key or rotate one from the API Keys page.

Set up API key
View docs

API key

API key required for live requests. Your key is only used to send requests from this Playground.

not configured

Active Playground key: not configured

Manage API keys in Console

Required query parameters

Add an API key to send a live request.

If an active API key is configured, Copy cURL includes it. Share links never include API keys.

View docs
Sample responseGET

Shown before your first request. Add an API key and send a request to see the live response, status, latency, and headers.

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "asin": "142325113X",
      "title": "ChatGPT Uses & Prompts: a QuickStudy Laminated Reference Guide",
      "is_sponsored": false,
      "link": "https://www.amazon.com/ChatGPT-Uses-Prompts-QuickStudy-Laminated/dp/142325113X/",
      "image": "https://m.media-amazon.com/images/I/71qzQ91Qe0L._AC_UL320_.jpg",
      "rating": 4.4,
      "review_count": 223,
      "price": 8.34,
      "list_price": 8.95,
      "number_of_bought_in_last_month": 0,
      "is_free_delivery": false,
      "more_choice": "https://www.amazon.com/gp/offer-listing/142325113X/"
    }
  ]
}

Endpoint details

Returns normalized Amazon search result cards for `amazon.com`.

Method
GET
Path
/amazon/search
Authentication
apiKey
Credit cost
3 credits/request
Platform
Amazon
Parameters
4 documented fields

Request parameters

k:querys:querypage:queryx-api-key:header

Response schema fields

codedatadata[].asindata[].imagedata[].is_free_deliverydata[].is_sponsoreddata[].linkdata[].list_pricedata[].more_choicedata[].number_of_bought_in_last_monthdata[].pricedata[].rating

Sample response summary

{
  "code": 200,
  "msg": "OK",
  "data": [
    {
      "asin": "142325113X",
      "title": "ChatGPT Uses & Prompts: a QuickStudy Laminated Reference Guide",
      "is_sponsored": false,
      "link": "https://www.amazon.com/ChatGPT-Uses-Prompts-QuickStudy-Laminated/dp/142325113X/",
      "image": "https://m.media-amazon.com/images/I/71qzQ91Qe0L._AC_UL320_.jpg",
      "rating": 4.4,
      "review_count": 223,
      "price": 8.34,
      "list_price": 8.95,
      "number_of_bought_in_last_month": 0,
      "is_free_delivery": false,
      "more_choice": "https://www.amazon.com/gp/offer-listing/142325113X/"
    }
  ]
}

cURL example

curl "https://api.crawlora.net/api/v1/amazon/search?k=<k>" \
  -H "x-api-key: <api-key>"