> For the complete documentation index, see [llms.txt](https://docs.scraperapi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.scraperapi.com/structured-data-endpoints/e-commerce/amazon/amazon-search-api.md).

# Amazon Search API

This endpoint will retrieve products for a specified search term from Amazon search page and transform it into usable JSON.

{% tabs %}
{% tab title="cURL" %}

```bash
curl --request GET \
--url "https://api.scraperapi.com/structured/amazon/search?api_key=API_KEY&\
query=QUERY&country_code=COUNTRY_CODE&tld=TLD"
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

payload = {
    'api_key': 'API_KEY',
    'query': 'QUERY',
    'country_code': 'COUNTRY_CODE',
    'tld': 'TLD'
}

r = requests.get('https://api.scraperapi.com/structured/amazon/search',params=payload)

print(r.text)
```

{% endtab %}

{% tab title="NodeJS" %}

```javascript
import fetch from 'node-fetch';

fetch(
  'https://api.scraperapi.com/structured/amazon/search?api_key=API_KEY&query=QUERY&country_code=COUNTRY_CODE&tld=TLD'
)
  .then(response => response.json()) 
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error(error);
  });
```

{% endtab %}

{% tab title="PHP" %}

```php
<?php
$url = "https://api.scraperapi.com/structured/amazon/search?api_key=API_KEY&query=QUERY&country_code=COUNTRY_CODE&tld=TLD";

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);

$response = curl_exec($ch);
curl_close($ch);

print_r($response);
```

{% endtab %}

{% tab title="Ruby" %}

```ruby
require 'net/http'
require 'json'

params = {
  :api_key => "API_KEY",
  :query => "QUERY",
  :country_code => "COUNTRY_CODE",
  :tld => "TLD"
}

uri = URI('https://api.scraperapi.com/structured/amazon/search')
uri.query = URI.encode_www_form(params)

website_content = Net::HTTP.get(uri)
print(website_content)
```

{% endtab %}

{% tab title="Java" %}

```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class Main {
    public static void main(String[] args) {
        try {
            String apiKey = "API_KEY";
            String query = "QUERY";
            String country_code = "COUNTRY_CODE";
            String tld = "TLD";

            String urlStr = "https://api.scraperapi.com/structured/amazon/search?api_key=" 
                            + apiKey + "&query=" + query + "&country_code=" + country_code + "&tld=" + tld;

            URL url = new URL(urlStr);
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("GET");

            int responseCode = conn.getResponseCode();
            if (responseCode == HttpURLConnection.HTTP_OK) {
                BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                StringBuilder response = new StringBuilder();
                String line;
                while ((line = in.readLine()) != null) {
                    response.append(line);
                }
                in.close();
                System.out.println(response.toString());
            } else {
                System.out.println("Error in API Call. Response code: " + responseCode);
            }

        } catch (Exception ex) {
            ex.printStackTrace();
        }
    }
}
```

{% endtab %}
{% endtabs %}

**Supported Parameters**

<table><thead><tr><th width="230">Parameters</th><th>Details</th></tr></thead><tbody><tr><td><code>API_KEY</code> (required)</td><td>Your API Key.</td></tr><tr><td><code>QUERY</code> (required)</td><td>Amazon Search query string</td></tr><tr><td><code>TLD</code></td><td><p>Amazon market to be scraped.</p><p>Valid values include:</p><p><strong>com</strong> (amazon.com)</p><p><strong>co.uk</strong> (amazon.co.uk)</p><p><strong>ca</strong> (amazon.ca)</p><p><strong>de</strong> (amazon.de)</p><p><strong>es</strong> (amazon.es)</p><p><strong>fr</strong> (amazon.fr)<br><strong>ie</strong> (amazon.ie)</p><p><strong>it</strong> (amazon.it)</p><p><strong>co.jp</strong> (amazon.co.jp)<br><strong>co.za</strong> (amazon.co.za)</p><p><strong>in</strong> (amazon.in)</p><p><strong>cn</strong> (amazon.cn)</p><p><strong>com.sg</strong> (amazon.com.sg)</p><p><strong>com.mx</strong> (amazon.com.mx)</p><p><strong>ae</strong> (amazon.ae)</p><p><strong>com.br</strong> (amazon.com.br)</p><p><strong>nl</strong> (amazon.nl)</p><p><strong>com.au</strong> (amazon.com.au)</p><p><strong>com.tr</strong> (amazon.com.tr)</p><p><strong>sa</strong> (amazon.sa)</p><p><strong>se</strong> (amazon.se)</p><p><strong>pl</strong> (amazon.pl)</p></td></tr><tr><td><code>COUNTRY_CODE</code></td><td><p>Valid values are two letter country codes for which we offer Geo Targeting (e.g. “<strong>au</strong>”, “<strong>es</strong>”, “<strong>it</strong>”, etc.).</p><p>Where an Amazon domain needs to be scraped from another country (e.g. scraping amazon.com from Canada to get Canadian shipping information), <strong>both TLD and COUNTRY parameters must be specified.</strong></p></td></tr><tr><td><code>OUTPUT_FORMAT</code></td><td><p>For structured data methods we offer CSV and JSON output. JSON is default if parameter is not added. Options:</p><ul><li>csv</li><li>json (default)</li></ul></td></tr><tr><td><code>PAGE</code></td><td>Paginating the result. For example: <code>1</code></td></tr><tr><td><code>REF</code></td><td>A reference string used by amazon. For example: <code>olp_f_usedAcceptable</code></td></tr><tr><td><code>S</code></td><td>Change sorting. For example: <code>price-desc-rank</code></td></tr><tr><td><code>I</code></td><td>Refine the search to a specific category. For example: <code>electronics</code></td></tr><tr><td>ZIP Code Targeting</td><td>To find out more about ZIP Code targeting, please follow this <a href="/pages/Holp9APEMCn7lDkzH8zp">link</a></td></tr><tr><td></td><td></td></tr></tbody></table>

### Sample Response

```json
{
	"results": [
		{
			"type": "search_product",
			"position": 1,
			"asin": "B0H5W39V6T",
			"name": "HAOYUYAN Wireless Earbuds, Sports Bluetooth Headphones, 80Hrs Playtime Ear Buds with LED Power Display, Noise Canceling Headset, IPX7 Waterproof Earphones for Workout/Running (Black)",
			"image": "https://m.media-amazon.com/images/I/71cmAChhQKL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"stars": 4.7,
			"total_reviews": 306,
			"url": "https://www.amazon.com/HAOYUYAN-Bluetooth-Headphones-Canceling-Waterproof/dp/B0H5W39V6T/ref=sr_1_1?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-1",
			"spec": {},
			"price_string": "$23.98",
			"price_symbol": "$",
			"price": 23.98,
			"original_price": {
				"price_string": "$299.99",
				"price_symbol": "$",
				"price": 299.99
			}
		},
		{
			"type": "search_product",
			"position": 2,
			"asin": "B0H718C1NK",
			"name": "Wireless Earbuds, Bluetooth 5.3 Headphones HiFi Stereo 50H Playback LED Digital Display Ear Buds with ENC Noise Canceling Headset, IPX7 Waterproof Earphones for Gym/Running/Work（White）",
			"image": "https://m.media-amazon.com/images/I/61P4QAI28CL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "6K+ bought in past month",
			"stars": 4.7,
			"total_reviews": 426,
			"url": "https://www.amazon.com/Fhumsh-Bluetooth-Headphones-Waterproof-Work%EF%BC%88White%EF%BC%89/dp/B0H718C1NK/ref=sr_1_2?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-2",
			"spec": {},
			"price_string": "$19.97",
			"price_symbol": "$",
			"price": 19.97,
			"original_price": {
				"price_string": "$249.99",
				"price_symbol": "$",
				"price": 249.99
			}
		},
		{
			"type": "search_product",
			"position": 3,
			"asin": "B0H7B89GR7",
			"name": "Open Ear Headphones, Bluetooth 6.1 Wireless Air Conduction Headphones Sport Earbuds,IPX6 Waterproof,Clear Call,Lightweight Earphones for Running Cycling Workouts (White)",
			"image": "https://m.media-amazon.com/images/I/61RbUp29TSL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"stars": 3.9,
			"total_reviews": 14,
			"url": "https://www.amazon.com/Acjohtin-Headphones-Conduction-Waterproof-Lightweight/dp/B0H7B89GR7/ref=sr_1_3?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-3",
			"spec": {},
			"price_string": "$20.99",
			"price_symbol": "$",
			"price": 20.99,
			"original_price": {
				"price_string": "$99.00",
				"price_symbol": "$",
				"price": 99
			}
		},
		{
			"type": "search_product",
			"position": 4,
			"asin": "B0BTYCRJSS",
			"name": "Soundcore by Anker P20i True Wireless Earbuds, with Big Bass, 30H Playtime | Bluetooth 5.3, Water-Resistant, 2 Mics for AI Clear Calls, 22 Preset EQs, Customization via App ClimatePartner certified",
			"image": "https://m.media-amazon.com/images/I/51Yya2WtvkL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": true,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.4,
			"total_reviews": 112977,
			"url": "https://www.amazon.com/Soundcore-Wireless-Bluetooth-Water-Resistant-Customization/dp/B0BTYCRJSS/ref=sr_1_4?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-4",
			"spec": {},
			"price_string": "$19.98",
			"price_symbol": "$",
			"price": 19.98,
			"original_price": {
				"price_string": "$39.99",
				"price_symbol": "$",
				"price": 39.99
			}
		},
		{
			"type": "search_product",
			"position": 5,
			"asin": "B0FQFB8FMG",
			"name": "Apple AirPods Pro 3 Wireless Earbuds, Active Noise Cancellation, Live Translation, Heart Rate Sensing, Hearing Aid Feature, Bluetooth Headphones, Spatial Audio, High-Fidelity Sound, USB-C Charging",
			"image": "https://m.media-amazon.com/images/I/61solmQSSlL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.5,
			"total_reviews": 13613,
			"url": "https://www.amazon.com/Apple-Cancellation-Translation-Headphones-High-Fidelity/dp/B0FQFB8FMG/ref=sr_1_5?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-5",
			"spec": {},
			"price_string": "$189.99",
			"price_symbol": "$",
			"price": 189.99,
			"original_price": {
				"price_string": "$249.00",
				"price_symbol": "$",
				"price": 249
			}
		},
		{
			"type": "search_product",
			"position": 6,
			"asin": "B0DGHMNQ5Z",
			"name": "Apple AirPods 4 Wireless Earbuds, Bluetooth Headphones, Personalized Spatial Audio, Sweat and Water Resistant, USB-C Charging Case, H2 Chip, Up to 30 Hours of Battery Life, Effortless Setup for iPhone",
			"image": "https://m.media-amazon.com/images/I/61iBtxCUabL.jpg",
			"has_prime": false,
			"is_best_seller": true,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.5,
			"total_reviews": 33511,
			"url": "https://www.amazon.com/Apple-Bluetooth-Headphones-Personalized-Effortless/dp/B0DGHMNQ5Z/ref=sr_1_6?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-6",
			"spec": {},
			"price_string": "$99.00",
			"price_symbol": "$",
			"price": 99,
			"original_price": {
				"price_string": "$129.00",
				"price_symbol": "$",
				"price": 129
			}
		},
		{
			"type": "search_product",
			"position": 7,
			"asin": "B0H8LXS411",
			"name": "Aesthetic Upgraded Wireless Earbuds 2-in-1 with Day & Night Modes, Bluetooth 6.0 Ultra-Mini Headphones, Built in Mics & HiFi Stereo Earphones, IPX5 Waterproof All in Comfortable Ear Buds（Black）",
			"image": "https://m.media-amazon.com/images/I/61ThUN3OYpL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"stars": 4.4,
			"total_reviews": 27,
			"url": "https://www.amazon.com/Ultra-Mini-Headphones-Waterproof-Comfortable-Buds%EF%BC%88Black%EF%BC%89/dp/B0H8LXS411/ref=sr_1_7?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-7",
			"spec": {},
			"price_string": "$16.99",
			"price_symbol": "$",
			"price": 16.99,
			"original_price": {
				"price_string": "$19.99",
				"price_symbol": "$",
				"price": 19.99
			}
		},
		{
			"type": "search_product",
			"position": 8,
			"asin": "B0HCBSHWVQ",
			"name": "Wireless Earbuds, Smart Touchscreen Ear Buds, ANC Headphones, Bluetooth 5.4 | 48H Playtime, ENC Clear Calls, 13mm Drivers, 5 EQ Modes, Hi-Fi Deep Bass, Lightweight Fit, for iPhone/Android/Pad",
			"image": "https://m.media-amazon.com/images/I/61UhjNWNvbL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"stars": 4.9,
			"total_reviews": 99,
			"url": "https://www.amazon.com/Wireless-Earbuds-Touchscreen-Headphones-Bluetooth/dp/B0HCBSHWVQ/ref=sr_1_8?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-8",
			"spec": {},
			"price_string": "$16.99",
			"price_symbol": "$",
			"price": 16.99,
			"original_price": {
				"price_string": "$169.99",
				"price_symbol": "$",
				"price": 169.99
			}
		},
		{
			"type": "search_product",
			"position": 9,
			"asin": "B0D635YLCT",
			"name": "kurdene Wireless Earbuds Bluetooth 5.3 in Ear Buds Light Weight Headphones,Deep Bass Sound,Built in Mics Headset,Clear Calls Earphones for Sports Workout Black | Premium Sound Bass Ear buds with Charging Case,Smart Touch Control,Built in Mics Headset,Clear Calls for Sports Workout",
			"image": "https://m.media-amazon.com/images/I/715fNrGN+ML.jpg",
			"has_prime": false,
			"is_best_seller": true,
			"is_amazon_choice": false,
			"is_limited_deal": true,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.3,
			"total_reviews": 60511,
			"url": "https://www.amazon.com/kurdene-Bluetooth-Light-Weight-Headphones-Earphones/dp/B0D635YLCT/ref=sr_1_9?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-9",
			"spec": {},
			"price_string": "$8.99",
			"price_symbol": "$",
			"price": 8.99,
			"original_price": {
				"price_string": "$9.99",
				"price_symbol": "$",
				"price": 9.99
			}
		},
		{
			"type": "search_product",
			"position": 10,
			"asin": "B0H6WWX6YZ",
			"name": "Open Ear Wireless Earbuds Bluetooth Headphones, 80H Playtime Stereo Ear Buds with ENC Noise Cancelling, Fast Charging, IPX7 Waterproof Sports Earphones with Earhook for Running/Workouts (Black)",
			"image": "https://m.media-amazon.com/images/I/711QPgAUfhL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "2K+ bought in past month",
			"stars": 4.7,
			"total_reviews": 244,
			"url": "https://www.amazon.com/Bluetooth-Headphones-Cancelling-Waterproof-Earphones/dp/B0H6WWX6YZ/ref=sr_1_10?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-10",
			"spec": {},
			"price_string": "$25.99",
			"price_symbol": "$",
			"price": 25.99,
			"original_price": {
				"price_string": "$299.99",
				"price_symbol": "$",
				"price": 299.99
			}
		},
		{
			"type": "search_product",
			"position": 11,
			"asin": "B0H9NJWYQ3",
			"name": "Wireless Earbuds with Ear Hooks, Running Headphones, Ear Buds for Sports | 80H Long Playtime, Noise Cancelling, Physical Button Control, LED Display, IPX7 Waterproof Workout Earphones, Black",
			"image": "https://m.media-amazon.com/images/I/61+8-PajyKL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"stars": 4.7,
			"total_reviews": 64,
			"url": "https://www.amazon.com/Wireless-Earbuds-Running-Headphones-Sports/dp/B0H9NJWYQ3/ref=sr_1_11?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-11",
			"spec": {},
			"price_string": "$16.99",
			"price_symbol": "$",
			"price": 16.99,
			"original_price": {
				"price_string": "$159.99",
				"price_symbol": "$",
				"price": 159.99
			}
		},
		{
			"type": "search_product",
			"position": 12,
			"asin": "B0H7S4CH9W",
			"name": "Wireless Earbuds Bluetooth Headphones, 54H Playtime Full Stereo Over Ear Buds with ENC Noise Cancelling, LED Power Display, IPX7 Waterproof Sport Earphones with Earhooks for Running/Workouts Black",
			"image": "https://m.media-amazon.com/images/I/716uLGLoj9L.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "5K+ bought in past month",
			"stars": 4.5,
			"total_reviews": 271,
			"url": "https://www.amazon.com/Bluetooth-Headphones-Cancelling-Waterproof-Earphones/dp/B0H7S4CH9W/ref=sr_1_12?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-12",
			"spec": {},
			"price_string": "$19.99",
			"price_symbol": "$",
			"price": 19.99,
			"original_price": {
				"price_string": "$229.99",
				"price_symbol": "$",
				"price": 229.99
			}
		},
		{
			"type": "search_product",
			"position": 13,
			"asin": "B0BQPNMXQV",
			"name": "JBL Vibe Beam - True Wireless Earbuds - Black | JBL Deep Bass Sound, Comfortable fit, Up to 32 8h 24h total hours of battery life with speed charging",
			"image": "https://m.media-amazon.com/images/I/41+1Csr1pSL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.2,
			"total_reviews": 40049,
			"url": "https://www.amazon.com/JBL-Vibe-Beam-Wireless-Headphones/dp/B0BQPNMXQV/ref=sr_1_13?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-13",
			"spec": {},
			"price_string": "$54.95",
			"price_symbol": "$",
			"price": 54.95
		},
		{
			"type": "search_product",
			"position": 14,
			"asin": "B0H6VZSB53",
			"name": "Active Noise Cancelling Ear Buds Wireless Earbuds 90H Playtime Bluetooth Headphones Stereo Bass Over-Ear Hooks Earphones with Power Display Case IPX7 Waterproof Headset for Workout/Running, Black",
			"image": "https://m.media-amazon.com/images/I/81ppNw5A-UL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": true,
			"purchase_history_message": "1K+ bought in past month",
			"stars": 4.4,
			"total_reviews": 5614,
			"url": "https://www.amazon.com/Cancelling-Bluetooth-Headphones-Earphones-Waterproof/dp/B0H6VZSB53/ref=sr_1_14?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-14",
			"spec": {},
			"price_string": "$44.79",
			"price_symbol": "$",
			"price": 44.79,
			"original_price": {
				"price_string": "$89.99",
				"price_symbol": "$",
				"price": 89.99
			}
		},
		{
			"type": "search_product",
			"position": 15,
			"asin": "B0DN45YMP6",
			"name": "JBL Vibe Beam 2 - Noise Cancelling Earbuds - Black | JBL Pure Bass sound, Active Noise Cancelling with Smart Ambient, 4 mics for crisp, clear calls, Water and dust resistant",
			"image": "https://m.media-amazon.com/images/I/618f5yBk26L.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "10K+ bought in past month",
			"stars": 4.1,
			"total_reviews": 3910,
			"url": "https://www.amazon.com/JBL-Vibe-Beam-Cancelling-Technology/dp/B0DN45YMP6/ref=sr_1_15?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-15",
			"spec": {}
		},
		{
			"type": "search_product",
			"position": 16,
			"asin": "B0H5VN7MDL",
			"name": "HAOYUYAN Sports Bluetooth Headphones, 80Hrs Playtime Wireless Earbuds with LED Power Display, IPX7 Waterproof Earphones for Workout/Running, Noise Canceling Headset Ear Buds",
			"image": "https://m.media-amazon.com/images/I/71ojhWau2HL.jpg",
			"has_prime": false,
			"is_best_seller": false,
			"is_amazon_choice": false,
			"is_limited_deal": false,
			"purchase_history_message": "5K+ bought in past month",
			"stars": 4.3,
			"total_reviews": 2034,
			"url": "https://www.amazon.com/HAOYUYAN-Bluetooth-Headphones-Waterproof-Earphones/dp/B0H5VN7MDL/ref=sr_1_16?dib=eyJ2IjoiMSJ9.G6arXQFhMBWfluhtwwnE-kGmxvPn-IEwlP3-k3huu--8Mwl9bv3JxORC5chaX4FuKLV8QNHpk32YFhtd8xtvVmeIjcc1nLDX0Q_Vh3UubdItuNyvOOJdOio-A0qRQric-pOTZXr6FehfPAHLTwEAFn812t8qIwQNlx4uYENwWUyFQEj2KrwdzuyU4bFOOXfHAhbXxnMSjf6dDEdv2VTCpZ_LoRGkFkmtbTOYedZ9yMM.TXZIGD2mcjTHmWJGzTDX72wixzaMouREwXnaSwjdg_8&dib_tag=se&keywords=wireless+earbuds&qid=1786710310&sr=8-16",
			"spec": {},
			"price_string": "$19.99",
			"price_symbol": "$",
			"price": 19.99,
			"original_price": {
				"price_string": "$23.98",
				"price_symbol": "$",
				"price": 23.98
			}
		}
	],
	"explore_more_items": [],
	"next_pages": [
		"https://www.amazon.com/s?k=wireless+earbuds&page=2&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_2",
		"https://www.amazon.com/s?k=wireless+earbuds&page=3&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_3",
		"https://www.amazon.com/s?k=wireless+earbuds&page=4&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_4",
		"https://www.amazon.com/s?k=wireless+earbuds&page=5&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_5",
		"https://www.amazon.com/s?k=wireless+earbuds&page=6&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_6",
		"https://www.amazon.com/s?k=wireless+earbuds&page=7&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_7",
		"https://www.amazon.com/s?k=wireless+earbuds&page=8&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_8",
		"https://www.amazon.com/s?k=wireless+earbuds&page=9&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_9",
		"https://www.amazon.com/s?k=wireless+earbuds&page=10&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_10",
		"https://www.amazon.com/s?k=wireless+earbuds&page=11&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_11",
		"https://www.amazon.com/s?k=wireless+earbuds&page=12&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_12",
		"https://www.amazon.com/s?k=wireless+earbuds&page=13&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_13",
		"https://www.amazon.com/s?k=wireless+earbuds&page=14&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_14",
		"https://www.amazon.com/s?k=wireless+earbuds&page=15&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_15",
		"https://www.amazon.com/s?k=wireless+earbuds&page=16&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_16",
		"https://www.amazon.com/s?k=wireless+earbuds&page=17&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_17",
		"https://www.amazon.com/s?k=wireless+earbuds&page=18&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_18",
		"https://www.amazon.com/s?k=wireless+earbuds&page=19&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_19",
		"https://www.amazon.com/s?k=wireless+earbuds&page=20&xpid=Wh0oNupojeHfC&qid=1786710310&ref=sr_pg_20"
	]
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.scraperapi.com/structured-data-endpoints/e-commerce/amazon/amazon-search-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
