Piloterr

Amazon Search

Efficiently scrape Amazon search results for real-time product data and insights across multiple Amazon marketplaces.

Credit cost: 1 credit per call

GET
/v2/amazon/search

Authorization

ApiKeyAuth
x-api-key<token>

Your API key. Include it in the x-api-key header for every request.

In: header

Query Parameters

query*string

Keyword or phrase to search for products on Amazon.

Example:

playstation 5

Notes:

  • Searches are performed against the marketplace set by the domain parameter.
  • Results include both organic and sponsored (ad) listings.
  • Combine with page to retrieve more results beyond the first page.
domain?string

Amazon domain extension to query. Controls which Amazon marketplace is searched.

  • com: Amazon United States (default)
  • fr: Amazon France
  • de: Amazon Germany
  • co.uk: Amazon United Kingdom
  • it: Amazon Italy
  • es: Amazon Spain
  • ca: Amazon Canada
  • co.jp: Amazon Japan
  • com.br: Amazon Brazil
  • com.mx: Amazon Mexico
  • in: Amazon India
Default"com"
page?number

Page number for paginated search results. Each page returns up to 60 results.

Default"1"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.piloterr.com/v2/amazon/search?query=string"
[
  {
    "url": "https://www.amazon.com/PlayStation%C2%AE5-Digital-825GB-PlayStation-5/dp/B0FRGMYJMG/ref=sr_1_1",
    "asin": "B0FRGMYJMG",
    "price": null,
    "title": "PlayStation®5 Digital Edition – 825GB",
    "rating": 4.8,
    "real_price": 344.5,
    "reviews_count": 196
  },
  {
    "url": "https://www.amazon.com/PS5-Playstation-Digital-Wireless-Controller/dp/B0966NLTZS/ref=sr_1_2",
    "asin": "B0966NLTZS",
    "price": 414.42,
    "title": "PS5 - Sony PlayStation 5 Digital Edition Gaming Console + Wireless Controller",
    "rating": 4.4,
    "real_price": 362.62,
    "reviews_count": 248
  },
  {
    "url": "https://www.amazon.com/PlayStation-PS5-Console-Ragnar%C3%B6k-Bundle-5/dp/B0BHC395WW/ref=sr_1_7",
    "asin": "B0BHC395WW",
    "price": null,
    "title": "PlayStation PS5 Console – God of War Ragnarök Bundle",
    "rating": 4.8,
    "real_price": 448.92,
    "reviews_count": 13891
  },
  {
    "url": "https://www.amazon.com/Pok%C3%A9mon-Scarlet-Nintendo-Switch/dp/B09TM8XRND/ref=sr_1_24",
    "asin": "B09TM8XRND",
    "price": 48.99,
    "title": "Pokémon Scarlet - US Version",
    "rating": 4.7,
    "real_price": null,
    "reviews_count": 7396
  }
]
{
  "error": "Bad Request"
}
{
  "error": "Invalid API Key"
}
{
  "error": "Payment required"
}
{
  "error": "Rate limit exceeded for the API key: quota monthly"
}
{
  "error": "Internal Error"
}