# Amazon Category

{% hint style="success" %}
To enable this feature, set the **`type=category`** parameter.
{% endhint %}

The Amazon Category feature should be used when scraping Amazon products by category. This feature will return a JSON object with the available products in the specified categories. Among other useful information, the main keys included in the JSON object are:

* `search_information`
* `product_results`

### Amazon Category Parameters

The Amazon Category feature only takes one specific parameter:

<table><thead><tr><th width="160">Parameter</th><th width="102" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>category_id</code><br><mark style="color:red;background-color:red;">Required</mark></td><td align="center"><code>string</code></td><td>The ID of the category you are searching for. You can use both alias or numerical id for parent categories.</td></tr></tbody></table>

Your full **GET** request should then be sent to the following address:

{% code overflow="wrap" %}

```
https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=category&category_id=<CATEGORY_ID>
```

{% endcode %}

### Amazon Category Integration Examples

{% tabs %}
{% tab title="cURL" %}
{% code overflow="wrap" %}

```bash
curl --request GET --url "https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices"
```

{% endcode %}
{% endtab %}

{% tab title="NodeJS" %}
{% code overflow="wrap" %}

```javascript
const http = require("https");

const options = {
  "method": "GET",
  "hostname": "ecom.webscrapingapi.com",
  "port": null,
  "path": "/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices",
  "headers": {}
};

const req = http.request(options, function (res) {
  const chunks = [];

  res.on("data", function (chunk) {
    chunks.push(chunk);
  });

  res.on("end", function () {
    const body = Buffer.concat(chunks);
    console.log(body.toString());
  });
});

req.end();
```

{% endcode %}
{% endtab %}

{% tab title="Python" %}
{% code overflow="wrap" %}

```python
import requests

API_KEY = '<YOUR_API_KEY>'
SCRAPER_URL = 'https://ecom.webscrapingapi.com/v1'

PARAMS = {
    "api_key":API_KEY,
    "engine":"amazon",
    "type":"category",
    "category_id":"amazon-devices"
}

response = requests.get(SCRAPER_URL, params=PARAMS)

print(response.text)
```

{% endcode %}
{% endtab %}

{% tab title="PHP" %}
{% code overflow="wrap" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
```

{% endcode %}
{% endtab %}

{% tab title="Go" %}
{% code overflow="wrap" %}

```go
package main

import (
	"fmt"
	"net/http"
	"io/ioutil"
)

func main() {

	url := "https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := ioutil.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

{% endcode %}
{% endtab %}

{% tab title="Java" %}
{% code overflow="wrap" %}

```java
HttpResponse<String> response = Unirest.get("https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices")
  .asString();
```

{% endcode %}
{% endtab %}

{% tab title=".NET" %}
{% code overflow="wrap" %}

```csharp
var client = new RestClient("https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

{% endcode %}
{% endtab %}

{% tab title="Ruby" %}
{% code overflow="wrap" %}

```ruby
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://ecom.webscrapingapi.com/v1?engine=amazon&api_key=<YOUR_API_KEY>&type=catgory&category_id=amazon-devices")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

{% endcode %}
{% endtab %}
{% endtabs %}

<details>

<summary>Response Example</summary>

```javascript
{
    "search_parameters": {
        "amazon_url": "https://www.amazon.com/Amazon-Devices/b?ie=UTF8&node=2102313011",
        "engine": "amazon",
        "amazon_domain": "amazon.com",
        "device": "desktop",
        "type": "category",
        "category_id": "amazon-devices"
    },
    "search_information": {
        "organic_results_state": "Results for exact spelling",
        "total_results": null,
        "query_displayed": ""
    },
    "category_results": {
        "product_results": [
            {
                "position": 1,
                "product_id": "B08C1W5N87",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/51KKR5uGn6L._AC_UL320_.jpg",
                "title": "Fire TV Stick with Alexa Voice Remote (includes TV controls), HD streaming device",
                "link": "/fire-tv-stick-with-3rd-gen-alexa-voice-remote/dp/B08C1W5N87/ref=lp_2102313011_1_1",
                "price": "$19.99",
                "currency": "$",
                "price_raw": "$39.99",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 141438,
                    "link": "/fire-tv-stick-with-3rd-gen-alexa-voice-remote/dp/B08C1W5N87/ref=lp_2102313011_1_1#customerReviews"
                },
                "amazon_choice": {
                    "link": "/fire-tv-stick-with-3rd-gen-alexa-voice-remote/dp/B08C1W5N87/ref=lp_2102313011_1_1"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping on orders over $25 shipped by Amazon"
                ]
            },
            {
                "position": 2,
                "product_id": "B08XVYZ1Y5",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/411y5UdVmvL._AC_UL320_.jpg",
                "title": "Fire TV Stick 4K streaming device with latest Alexa Voice Remote (includes TV controls), Dolby Vision",
                "link": "/all-new-fire-tv-stick-4k-with-alexa-voice-remote/dp/B08XVYZ1Y5/ref=lp_2102313011_1_2",
                "price": "$29.99",
                "currency": "$",
                "price_raw": "$49.99",
                "rating": {
                    "rating": "4.8 out of 5 stars",
                    "total_ratings": 42107,
                    "link": "/all-new-fire-tv-stick-4k-with-alexa-voice-remote/dp/B08XVYZ1Y5/ref=lp_2102313011_1_2#customerReviews"
                },
                "deal": "Limited time deal",
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 3,
                "product_id": "B08MQZXN1X",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/41XTOfFgUqL._AC_UL320_.jpg",
                "title": "Introducing Fire TV Stick 4K Max streaming device, Wi-Fi 6, Alexa Voice Remote (includes TV controls)",
                "link": "/fire-tv-stick-4k-max-with-alexa-voice-remote/dp/B08MQZXN1X/ref=lp_2102313011_1_3",
                "price": "$39.99",
                "currency": "$",
                "price_raw": "$54.99",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 23100,
                    "link": "/fire-tv-stick-4k-max-with-alexa-voice-remote/dp/B08MQZXN1X/ref=lp_2102313011_1_3#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 4,
                "product_id": "B07FZ8S74R",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/6182S7MYC2L._AC_UL320_.jpg",
                "title": "Echo Dot (3rd Gen, 2018 release) - Smart speaker with Alexa - Charcoal",
                "link": "/Echo-Dot/dp/B07FZ8S74R/ref=lp_2102313011_1_4",
                "price": "$39.99",
                "currency": "$",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 844796,
                    "link": "/Echo-Dot/dp/B07FZ8S74R/ref=lp_2102313011_1_4#customerReviews"
                },
                "bestseller": {
                    "link": "/gp/bestsellers/amazon-devices/17142716011/ref=sr_bs_3_17142716011_1",
                    "category": "in Echo Smart Speaker & Display Bundles"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 5,
                "product_id": "B08BX7FV5L",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/61uE03cRsyS._AC_UL320_.jpg",
                "title": "Fire HD 10 tablet, 10.1\", 1080p Full HD, 32 GB, latest model (2021 release), Black",
                "link": "/Fire-HD-10-tablet/dp/B08BX7FV5L/ref=lp_2102313011_1_5",
                "price": "$149.99",
                "currency": "$",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 54236,
                    "link": "/Fire-HD-10-tablet/dp/B08BX7FV5L/ref=lp_2102313011_1_5#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 6,
                "product_id": "B08B495319",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/51N5CsWCIBL._AC_UL320_.jpg",
                "title": "Introducing Kindle Paperwhite Signature Edition (32 GB) – With a 6.8\" display, wireless charging, and auto-adjusting front light – Without Ads",
                "link": "/Introducing-kindle-paperwhite-Signature-Edition/dp/B08B495319/ref=lp_2102313011_1_6",
                "price": "$189.99",
                "currency": "$",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 1315,
                    "link": "/Introducing-kindle-paperwhite-Signature-Edition/dp/B08B495319/ref=lp_2102313011_1_6#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 7,
                "product_id": "B089DR29T6",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/41couS+UODL._AC_UL320_.jpg",
                "title": "Amazon Smart Plug, Works with Alexa – A Certified for Humans Device",
                "link": "/Amazon-smart-plug-works-with-Alexa/dp/B089DR29T6/ref=lp_2102313011_1_7",
                "price": "$24.99",
                "currency": "$",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 476334,
                    "link": "/Amazon-smart-plug-works-with-Alexa/dp/B089DR29T6/ref=lp_2102313011_1_7#customerReviews"
                },
                "bestseller": {
                    "link": "/gp/bestsellers/hi/6291368011/ref=sr_bs_6_6291368011_1",
                    "category": "in Electrical Outlet Switches"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping on orders over $25 shipped by Amazon"
                ]
            },
            {
                "position": 8,
                "product_id": "B07FKR6KXF",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/71POuqajw1L._AC_UL320_.jpg",
                "title": "Fire 7 tablet, 7\" display, 16 GB, latest model (2019 release), Black",
                "link": "/Fire-Tablet-7/dp/B07FKR6KXF/ref=lp_2102313011_1_8",
                "price": "$49.99",
                "currency": "$",
                "rating": {
                    "rating": "4.4 out of 5 stars",
                    "total_ratings": 222853,
                    "link": "/Fire-Tablet-7/dp/B07FKR6KXF/ref=lp_2102313011_1_8#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 9,
                "product_id": "B085M66LH1",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/71b9icxgIgL._AC_UL320_.jpg",
                "title": "Echo Dot (4th Gen) | Smart speaker with clock and Alexa | Twilight Blue",
                "link": "/Echo-Dot-With-Clock-4th-Gen/dp/B085M66LH1/ref=lp_2102313011_1_9",
                "price": "$59.99",
                "currency": "$",
                "rating": {
                    "rating": "4.8 out of 5 stars",
                    "total_ratings": 147295,
                    "link": "/Echo-Dot-With-Clock-4th-Gen/dp/B085M66LH1/ref=lp_2102313011_1_9#customerReviews"
                },
                "bestseller": {
                    "link": "/gp/bestsellers/home-garden/3734911/ref=sr_bs_8_3734911_1",
                    "category": "in Alarm Clocks"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 10,
                "product_id": "B07WQ1VH72",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/71MPAn7oA+L._AC_UL320_.jpg",
                "title": "Fire HD 8 tablet, 8\" HD display, 32 GB, latest model (2020 release), designed for portable entertainment, Twilight Blue",
                "link": "/Fire-HD-8-tablet/dp/B07WQ1VH72/ref=lp_2102313011_1_10",
                "price": "$89.99",
                "currency": "$",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 134850,
                    "link": "/Fire-HD-8-tablet/dp/B07WQ1VH72/ref=lp_2102313011_1_10#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            },
            {
                "position": 11,
                "product_id": "B07YNLBS7R",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/51Da2Z+FTFL._AC_UL320_.jpg",
                "title": "Fire TV Stick Lite with Alexa Voice Remote Lite (no TV controls), HD streaming device",
                "link": "/fire-tv-stick-lite/dp/B07YNLBS7R/ref=lp_2102313011_1_11",
                "price": "$18.99",
                "currency": "$",
                "price_raw": "$29.99",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 215386,
                    "link": "/fire-tv-stick-lite/dp/B07YNLBS7R/ref=lp_2102313011_1_11#customerReviews"
                },
                "deal": "Limited time deal",
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping on orders over $25 shipped by Amazon"
                ]
            },
            {
                "position": 12,
                "product_id": "B07XJ8C8F5",
                "sponsored": false,
                "is_prime": true,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "thumbnail": "https://m.media-amazon.com/images/I/714Rq4k05UL._AC_UL320_.jpg",
                "title": "Echo Dot (4th Gen, 2020 release) | Smart speaker with Alexa | Charcoal",
                "link": "/all-new-Echo-Dot/dp/B07XJ8C8F5/ref=lp_2102313011_1_12",
                "price": "$49.99",
                "currency": "$",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 398903,
                    "link": "/all-new-Echo-Dot/dp/B07XJ8C8F5/ref=lp_2102313011_1_12#customerReviews"
                },
                "shipping_details": [
                    "Get it as soon as Sun, Jan 30",
                    "FREE Shipping by Amazon"
                ]
            }
        ],
        "categories": [
            {
                "link": "/dp/B078NSDFSB/ref=s9_acss_bw_cg_devicecp_1a1_w?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Amazon Astro",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-Y2Q1ODUxZDQt-w640.jpeg"
            },
            {
                "link": "/b/ref=ods_dcp_echo_img/ref=s9_acss_bw_cg_devicecp_1b1_w?ie=UTF8&node=9818047011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Echo & Alexa Devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-OWQ3NThhODAt-w640.jpeg"
            },
            {
                "link": "/dp/B09DWNZQYM/ref=s9_acss_bw_cg_devicecp_1c1_w?pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Amazon Glow",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-YjEzMWIzZjYt-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_3a1_w?node=23568130011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Halo Health & Wellness bands",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-ZTE0NDlmNjQt-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_3b1_w?node=17386948011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Smart Home devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MTliYWVlMTUt/Category_tile-640x300.jpg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_3c1_w?node=17386948011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Home Security devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-OTFhY2E5YjMt-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_5a1_w?node=8521791011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Fire TV devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/NmE0MDkzMjkt/NmE0MDkzMjkt-NDMzNTNhYmYt-w640"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_5b1_w?node=6669703011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Fire Tablet devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-NTk3YzNjM2Ut-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_5c1_w?node=6669702011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Kindle e-reader devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MDVhNzI5MWMt/MDVhNzI5MWMt-NzdkODdmNTIt-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_7a1_w?node=11851273011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Amazon devices deals",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2019/CXL-969/CSL-969_accesories_V1_640x300.jpg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_7b1_w?node=8497978011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Certified Refurbished Amazon devices",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MTVhNjVkNmEt/MTVhNjVkNmEt-MjliYmU1OTAt-w640.jpeg"
            },
            {
                "link": "/b/ref=s9_acss_bw_cg_devicecp_7c1_w?node=9187220011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-6&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=778f5814-1932-40e5-b2a7-8777cc3586e4&pf_rd_i=2102313011",
                "title": "Trade-In program",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/journeys/MTVhNjVkNmEt/MTVhNjVkNmEt-NGU4NDA3NTYt-w640._CB655801900_._SY200_.jpeg"
            },
            {
                "link": "/b/ref=d_devcp_music_img/ref=s9_acss_bw_cg_ADcatD_1a1_w?ie=UTF8&node=14981443011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-10&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=a3aecd05-3515-4240-9bee-2c4515b0989d&pf_rd_i=2102313011",
                "title": "Music",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2017/Family/CP/product_tile_750x350_desktop_music.jpg"
            },
            {
                "link": "/b/ref=d_devcp_apps_img/ref=s9_acss_bw_cg_ADcatD_1b1_w?ie=UTF8&node=2350149011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-10&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=a3aecd05-3515-4240-9bee-2c4515b0989d&pf_rd_i=2102313011",
                "title": "Apps & Games",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2017/Family/CP/product_tile_750x350_desktop_apps.jpg"
            },
            {
                "link": "/b/ref=d_devcp_video_img/ref=s9_acss_bw_cg_ADcatD_1c1_w?ie=UTF8&node=2858778011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-10&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=a3aecd05-3515-4240-9bee-2c4515b0989d&pf_rd_i=2102313011",
                "title": "Amazon Video",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2017/Family/CP/product_tile_750x350_desktop_video.jpg"
            },
            {
                "link": "/b/ref=d_devcp_ebooks_img/ref=s9_acss_bw_cg_ADcatD_1d1_w?ie=UTF8&node=154606011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-10&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=a3aecd05-3515-4240-9bee-2c4515b0989d&pf_rd_i=2102313011",
                "title": "Kindle E-Books",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2017/Family/CP/product_tile_750x350_desktop_books.jpg"
            },
            {
                "link": "/b/ref=d_devcp_acc_img/ref=s9_acss_bw_cg_ADcatD_1e1_w?ie=UTF8&node=370783011&pf_rd_m=ATVPDKIKX0DER&pf_rd_s=merchandised-search-10&pf_rd_r=TS8CE3QMHM9ZKAVYXAAP&pf_rd_t=101&pf_rd_p=a3aecd05-3515-4240-9bee-2c4515b0989d&pf_rd_i=2102313011",
                "title": "Accessories",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/G/01/kindle/merch/2017/Family/CP/product_tile_750x350_desktop_accessories.jpg"
            }
        ]
    }
}
```

</details>

<figure><img src="/files/ZI6YZy0gUM7ccsRtIkve" alt=""><figcaption><p>Scrape Amazon Products by Category</p></figcaption></figure>


---

# Agent Instructions: 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:

```
GET https://docs.webscrapingapi.com/amazon-search-api/amazon-search-types/amazon-category.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
