# Amazon New Releases

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

The Amazon API's New Releases feature returns a JSON object of the latests products released, along with valuable data about the products, ensuring you are up to date and your business is always ahead of the competiton.

### Amazon New Releases Parameters

The Amazon New Releases feature only takes two specific parameters:

<table><thead><tr><th width="178">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. Use it together with <code>parent_alias</code> when searching for sub-categories.</td></tr><tr><td><code>parent_alias</code></td><td align="center"><code>string</code></td><td>Specify the parent category <strong>alias</strong> when searching for sub-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=new-releases&category_id=<CATEGORY_ID>&parent_alias=<PARENT_ALIAS>
```

{% endcode %}

### Amazon New Releases 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=new-releases&category_id=fashion"
```

{% 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=new-releases&category_id=fashion",
  "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":"new-releases",
    "category_id":"fashion"
}

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=new-releases&category_id=fashion",
  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=new-releases&category_id=fashion"

	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=new-releases&category_id=fashion")
  .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=new-releases&category_id=fashion");
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=new-releases&category_id=fashion")

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/gp/new-releases/fashion",
        "engine": "amazon",
        "amazon_domain": "amazon.com",
        "device": "desktop",
        "type": "new-releases",
        "category_id": "fashion"
    },
    "search_information": {
        "organic_results_state": "Results for exact spelling",
        "total_results": null,
        "query_displayed": ""
    },
    "category_results": {
        "product_results": [
            {
                "position": 1,
                "product_id": "B09PBQ42RJ",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/AUROLA-Intensify-Seamless-Scrunch-Legging-25/dp/B09PBQ42RJ/ref=zg_bsnr_fashion_1/137-7357497-8285247?pd_rd_i=B09N8SYG7Q&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/51wr7V7l9kL._AC_UL302_SR302,200_.jpg",
                "title": "AUROLA Workout Leggings for Women Seamless Scrunch Yoga Pants Tummy Control Gym Fitness Sport Active Amplify Leggings 25''",
                "price": "$35.99 - $89.99",
                "rating": {
                    "rating": "4.4 out of 5 stars",
                    "total_ratings": 93,
                    "link": "/product-reviews/B09N8SYG7Q/ref=zg_bsnr_fashion_cr_1/137-7357497-8285247?pd_rd_i=B09N8SYG7Q"
                }
            },
            {
                "position": 2,
                "product_id": "B097T8Z829",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/BALEAF-Resistant-Sweatpants-Waisted-Thermal/dp/B097T8Z829/ref=zg_bsnr_fashion_2/137-7357497-8285247?pd_rd_i=B09MK146QZ&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/613G77myJQL._AC_UL302_SR302,200_.jpg",
                "title": "BALEAF Women's Fleece Lined Pants Water Resistant Sweatpants High Waisted Thermal Joggers Winter Running Hiking Pockets",
                "price": "$33.99",
                "rating": {
                    "rating": "4.4 out of 5 stars",
                    "total_ratings": 963,
                    "link": "/product-reviews/B09MK146QZ/ref=zg_bsnr_fashion_cr_2/137-7357497-8285247?pd_rd_i=B09MK146QZ"
                }
            },
            {
                "position": 3,
                "product_id": "B09MCKXKR5",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/krosa-Touchscreen-Fingers-Waterproof-Weather/dp/B09MCKXKR5/ref=zg_bsnr_fashion_3/137-7357497-8285247?pd_rd_i=B09QMLGNFX&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71JTuENX88L._AC_UL302_SR302,200_.jpg",
                "title": "-10℉ Winter Gloves Men Women, krosa 10 Touchscreen Fingers Snow Ski Gloves, Waterproof Cold Weather Gloves",
                "price": "$23.99 - $24.99",
                "rating": {
                    "rating": "4.3 out of 5 stars",
                    "total_ratings": 245,
                    "link": "/product-reviews/B09QMLGNFX/ref=zg_bsnr_fashion_cr_3/137-7357497-8285247?pd_rd_i=B09QMLGNFX"
                }
            },
            {
                "position": 4,
                "product_id": "B09PBRSBQZ",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/AUROLA-Seamless-Intensify-Scrunch-Exercise/dp/B09PBRSBQZ/ref=zg_bsnr_fashion_4/137-7357497-8285247?pd_rd_i=B09N8WY3MW&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/51Vy9XObFxL._AC_UL302_SR302,200_.jpg",
                "title": "AUROLA Amplify Shorts for Women Seamless Scrunch Short Gym Workout Yoga High Waist Intensify Running Exercise Shorts",
                "price": "$31.99 - $83.99",
                "rating": {
                    "rating": "4.5 out of 5 stars",
                    "total_ratings": 66,
                    "link": "/product-reviews/B09N8WY3MW/ref=zg_bsnr_fashion_cr_4/137-7357497-8285247?pd_rd_i=B09N8WY3MW"
                }
            },
            {
                "position": 5,
                "product_id": "B09QXKJ8QC",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Woenzaia-Skinny-Jeans-Ripped-Stretch/dp/B09QXKJ8QC/ref=zg_bsnr_fashion_5/137-7357497-8285247?pd_rd_i=B09QXKJ8QC&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71uc3Bd4c-L._AC_UL302_SR302,200_.jpg",
                "title": "Woenzaia Men's Skinny Jeans Ripped Slim Fit Stretch Jean Tight Denim Pants"
            },
            {
                "position": 6,
                "product_id": "B09JY43D9T",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/CUSHIONAIRE-Womens-Sasha-chelsea-Memory/dp/B09JY43D9T/ref=zg_bsnr_fashion_6/137-7357497-8285247?pd_rd_i=B09QNWV621&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71kTaDPwKaL._AC_UL302_SR302,200_.jpg",
                "title": "CUSHIONAIRE Women's Sasha slip on chelsea boot +Memory Foam",
                "price": "$49.99",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 197,
                    "link": "/product-reviews/B09QNWV621/ref=zg_bsnr_fashion_cr_6/137-7357497-8285247?pd_rd_i=B09QNWV621"
                }
            },
            {
                "position": 7,
                "product_id": "B09KL74DJ5",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/CM-WODRO-Translucent-Pantyhose-Black-Pantyhose/dp/B09KL74DJ5/ref=zg_bsnr_fashion_7/137-7357497-8285247?pd_rd_i=B09KRY36RS&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/41xafwHayUL._AC_UL302_SR302,200_.jpg",
                "title": "CM C&M WODRO Women Fleece Lined Tights Fake Translucent Thermal Leggings Winter Sheer Warm Pantyhose Footless Tights",
                "price": "$17.99 - $30.99",
                "rating": {
                    "rating": "3.9 out of 5 stars",
                    "total_ratings": 127,
                    "link": "/product-reviews/B09KRY36RS/ref=zg_bsnr_fashion_cr_7/137-7357497-8285247?pd_rd_i=B09KRY36RS"
                }
            },
            {
                "position": 8,
                "product_id": "B09Q16TWCR",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/WomenS-Smiley-Slippers-Outdoor-Purple-white/dp/B09Q16TWCR/ref=zg_bsnr_fashion_8/137-7357497-8285247?pd_rd_i=B09R4X3S2T&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81aHszcJJbL._AC_UL302_SR302,200_.jpg",
                "title": "Women'S Smiley Face Slippers Retro Warm Slip-On Non Slip Fuzzy Memory Foam Slippers for Winter Indoor Outdoor Men",
                "rating": {
                    "rating": "5.0 out of 5 stars",
                    "total_ratings": 1,
                    "link": "/product-reviews/B09R4X3S2T/ref=zg_bsnr_fashion_cr_8/137-7357497-8285247?pd_rd_i=B09R4X3S2T"
                }
            },
            {
                "position": 9,
                "product_id": "B09Q82CQ7J",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Smiley-Slippers-Sandals-Anti-Slip-Outdoor/dp/B09Q82CQ7J/ref=zg_bsnr_fashion_9/137-7357497-8285247?pd_rd_i=B09QYNQWRF&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/61qhHyrfImL._AC_UL302_SR302,200_.jpg",
                "title": "Smiley Face Slippers Sandals for Girls Boys EVA Anti-Slip Indoor & Outdoor Women Men Slippers Open Toe Spa Bath Pool Gym Hous",
                "price": "$15.99 - $19.99"
            },
            {
                "position": 10,
                "product_id": "B09KG88MD9",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Fruit-Loom-Eversoft-Sweatshirts-Zip-Black/dp/B09KG88MD9/ref=zg_bsnr_fashion_10/137-7357497-8285247?pd_rd_i=B09L5V3V4H&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81Gnnb6bI3L._AC_UL302_SR302,200_.jpg",
                "title": "Fruit of the Loom Men's Eversoft Fleece Sweatshirts & Hoodies (Big Man Sizes)",
                "price": "$11.65 - $31.98",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 267,
                    "link": "/product-reviews/B09L5V3V4H/ref=zg_bsnr_fashion_cr_10/137-7357497-8285247?pd_rd_i=B09L5V3V4H"
                }
            },
            {
                "position": 11,
                "product_id": "B09M3MPCNR",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Face-Slippers-Retro-Soft-Lightweight-Slippers-Slip-Anti-Skid/dp/B09M3MPCNR/ref=zg_bsnr_fashion_11/137-7357497-8285247?pd_rd_i=B09M3N83BP&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/614AliuKMgL._AC_UL302_SR302,200_.jpg",
                "title": "Smiley Face Slippers,Retro Soft Plush Lightweight House Slippers Slip-on Cozy Indoor Outdoor Slippers,Slip on Anti-Skid Sole",
                "price": "$15.98 - $25.99",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 79,
                    "link": "/product-reviews/B09M3N83BP/ref=zg_bsnr_fashion_cr_11/137-7357497-8285247?pd_rd_i=B09M3N83BP"
                }
            },
            {
                "position": 12,
                "product_id": "B09MZNPVQC",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Burts-Bees-Baby-Ly28560-cly-pm-Sleepers/dp/B09MZNPVQC/ref=zg_bsnr_fashion_12/137-7357497-8285247?pd_rd_i=B09LKR51YK&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/7107JuMmCIL._AC_UL302_SR302,200_.jpg",
                "title": "Burt's Bees Baby Baby Girls' Sleep and Play Pajamas, 100% Organic Cotton One-Piece Romper Jumpsuit Zip Front Pjs",
                "price": "$13.30 - $20.91",
                "rating": {
                    "rating": "4.8 out of 5 stars",
                    "total_ratings": 46,
                    "link": "/product-reviews/B09LKR51YK/ref=zg_bsnr_fashion_cr_12/137-7357497-8285247?pd_rd_i=B09LKR51YK"
                }
            },
            {
                "position": 13,
                "product_id": "B09M9XMYGV",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Double-Single-Piercing-Nostril-Jewelry/dp/B09M9XMYGV/ref=zg_bsnr_fashion_13/137-7357497-8285247?pd_rd_i=B09M9WBBS5&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/51J2Q+r6Z3L._AC_UL302_SR302,200_.jpg",
                "title": "Double Nose Hoop Ring for Single Piercing Nose Hoop, Twist Nose Ring Hoop For Women, Silver Spiral Nose Hoop For Girls, Nostr",
                "price": "$7.99 - $14.99",
                "rating": {
                    "rating": "3.7 out of 5 stars",
                    "total_ratings": 34,
                    "link": "/product-reviews/B09M9WBBS5/ref=zg_bsnr_fashion_cr_13/137-7357497-8285247?pd_rd_i=B09M9WBBS5"
                }
            },
            {
                "position": 14,
                "product_id": "B09NGC2D1B",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Couple-Keychain-Personalized-Boyfriend-Valentine/dp/B09NGC2D1B/ref=zg_bsnr_fashion_14/137-7357497-8285247?pd_rd_i=B09NGC2D1B&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/61WhoS+fFUL._AC_UL302_SR302,200_.jpg",
                "title": "Couple Keychain - Drive Safe I Need You Here with Me Metal Keychain, Personalized Keychain Couple, Gift for Him, Boyfriend Gi",
                "price": "$18.25",
                "rating": {
                    "rating": "5.0 out of 5 stars",
                    "total_ratings": 6,
                    "link": "/product-reviews/B09NGC2D1B/ref=zg_bsnr_fashion_cr_14/137-7357497-8285247?pd_rd_i=B09NGC2D1B"
                }
            },
            {
                "position": 15,
                "product_id": "B09Q3CYGGW",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Unisex-Essentials-Sweatshirt-Pullover-Sweater/dp/B09Q3CYGGW/ref=zg_bsnr_fashion_15/137-7357497-8285247?pd_rd_i=B09QBTGVVN&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/513ddI4OSxL._AC_UL302_SR302,200_.jpg",
                "title": "Unisex Essentials Hoodie Letter Print Loose Fit Hooded Sweatshirt Long Sleeve Casual Pullover Hoodie for Women Men",
                "price": "$19.49 - $24.99"
            },
            {
                "position": 16,
                "product_id": "B09MCVSPYR",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Translucent-Pantyhose-Stretchy-Leggings-Black-pantyhose/dp/B09MCVSPYR/ref=zg_bsnr_fashion_16/137-7357497-8285247?pd_rd_i=B09MCVSN4D&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/413aTtzCR6L._AC_UL302_SR302,200_.jpg",
                "title": "Women Warm Fleece Lined Sheer Thick Tights, Thermal Translucent Pantyhose, Winter Stretchy High Waist Slim Leggings",
                "price": "$16.99 - $30.99",
                "rating": {
                    "rating": "3.8 out of 5 stars",
                    "total_ratings": 58,
                    "link": "/product-reviews/B09MCVSN4D/ref=zg_bsnr_fashion_cr_16/137-7357497-8285247?pd_rd_i=B09MCVSN4D"
                }
            },
            {
                "position": 17,
                "product_id": "B098WX6F8F",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/DREAM-PAIRS-Slippers-Washable-Moccasins/dp/B098WX6F8F/ref=zg_bsnr_fashion_17/137-7357497-8285247?pd_rd_i=B09MCRCKJD&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71XE+Zve21L._AC_UL302_SR302,200_.jpg",
                "title": "DREAM PAIRS Men's Warm Slippers Memory Foam House Shoes, Indoor Outdoor Machine Washable Moccasins for Men with Non-Slip Sole",
                "price": "$34.99 - $35.99",
                "rating": {
                    "rating": "4.3 out of 5 stars",
                    "total_ratings": 121,
                    "link": "/product-reviews/B09MCRCKJD/ref=zg_bsnr_fashion_cr_17/137-7357497-8285247?pd_rd_i=B09MCRCKJD"
                }
            },
            {
                "position": 18,
                "product_id": "B09M8QQ8VD",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/ANRABESS-Turtleneck-Oversized-Sweaters-452-hongxing-S/dp/B09M8QQ8VD/ref=zg_bsnr_fashion_18/137-7357497-8285247?pd_rd_i=B09M8QN7HR&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81CAPDBT9QL._AC_UL302_SR302,200_.jpg",
                "title": "ANRABESS Women's Turtleneck Oversized 2021 Winter Long Batwing Sleeve Spilt Hem Knit Tunic Pullover Sweater Tops",
                "price": "$40.99",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 81,
                    "link": "/product-reviews/B09M8QN7HR/ref=zg_bsnr_fashion_cr_18/137-7357497-8285247?pd_rd_i=B09M8QN7HR"
                }
            },
            {
                "position": 19,
                "product_id": "B09MJ3QX1W",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Kids-Days-School-Costume-Boys/dp/B09MJ3QX1W/ref=zg_bsnr_fashion_19/137-7357497-8285247?pd_rd_i=B09MJ4JR11&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81VWA3QTSrL._AC_UL302_SR302,200_.jpg",
                "title": "Kids 100 Days of School Costume for Boys - Halloween Old Man Costume Hat, Glasses and Grandpa Vest Set for Child",
                "price": "$35.99",
                "rating": {
                    "rating": "5.0 out of 5 stars",
                    "total_ratings": 9,
                    "link": "/product-reviews/B09MJ4JR11/ref=zg_bsnr_fashion_cr_19/137-7357497-8285247?pd_rd_i=B09MJ4JR11"
                }
            },
            {
                "position": 20,
                "product_id": "B09MT27WBL",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Leggings-Thermal-Pantyhose-Translucent-Waisted/dp/B09MT27WBL/ref=zg_bsnr_fashion_20/137-7357497-8285247?pd_rd_i=B09NBR9RZB&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/61omp5EBc6L._AC_UL302_SR302,200_.jpg",
                "title": "Fleece Lined Tights Women Leggings Thermal Pantyhose Fake Translucent Tights Opaque High Waisted Winter Warm Sheer Tight",
                "price": "$15.99 - $24.99",
                "rating": {
                    "rating": "4.1 out of 5 stars",
                    "total_ratings": 30,
                    "link": "/product-reviews/B09NBR9RZB/ref=zg_bsnr_fashion_cr_20/137-7357497-8285247?pd_rd_i=B09NBR9RZB"
                }
            },
            {
                "position": 21,
                "product_id": "B09JNXR4XZ",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Disposable-Face_Mask-3-Layer-Earloop-Cartoon/dp/B09JNXR4XZ/ref=zg_bsnr_fashion_21/137-7357497-8285247?pd_rd_i=B09L12F296&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71CUbLuA8PL._AC_UL302_SR302,200_.jpg",
                "title": "Kids 50PCS Disposable Face_Mask Boys Girls Cartoon 3-Layer Earloop 5 Colors Face_Mask for Outdoor School",
                "price": "$15.99",
                "rating": {
                    "rating": "4.6 out of 5 stars",
                    "total_ratings": 38,
                    "link": "/product-reviews/B09L12F296/ref=zg_bsnr_fashion_cr_21/137-7357497-8285247?pd_rd_i=B09L12F296"
                }
            },
            {
                "position": 22,
                "product_id": "B09BF4ZCM4",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/mysoft-Waterproof-Insulated-Mid-Calf-Lightweight/dp/B09BF4ZCM4/ref=zg_bsnr_fashion_22/137-7357497-8285247?pd_rd_i=B09PRGPQYW&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81aHTK+RCjL._AC_UL302_SR302,200_.jpg",
                "title": "mysoft Mens Winter Snow Boots Waterproof Insulated Mid-Calf Hiking Boot Fur Lined Warm Outdoor Shoes Lightweight",
                "price": "$50.99 - $56.99",
                "rating": {
                    "rating": "3.9 out of 5 stars",
                    "total_ratings": 41,
                    "link": "/product-reviews/B09PRGPQYW/ref=zg_bsnr_fashion_cr_22/137-7357497-8285247?pd_rd_i=B09PRGPQYW"
                }
            },
            {
                "position": 23,
                "product_id": "B09N9TNVN6",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Thermal-Underwear-Fleece-Extreme-Weather/dp/B09N9TNVN6/ref=zg_bsnr_fashion_23/137-7357497-8285247?pd_rd_i=B09N9RN3YK&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/61E15svYemL._AC_UL302_SR302,200_.jpg",
                "title": "Thermal underwear for men Fleece Long Johns Cold-Weather Base Layer Top & Bottom",
                "price": "$16.99 - $29.99",
                "rating": {
                    "rating": "4.3 out of 5 stars",
                    "total_ratings": 71,
                    "link": "/product-reviews/B09N9RN3YK/ref=zg_bsnr_fashion_cr_23/137-7357497-8285247?pd_rd_i=B09N9RN3YK"
                }
            },
            {
                "position": 24,
                "product_id": "B09NVQJ3Z2",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Ritatte-Fleece-Stretchy-Pantyhose-Leggings/dp/B09NVQJ3Z2/ref=zg_bsnr_fashion_24/137-7357497-8285247?pd_rd_i=B09KV7BQ27&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/61D2Xef6spL._AC_UL302_SR302,200_.jpg",
                "title": "Ritatte Thick Fleece Lined Tights for Women, Fake Warm Translucent Pantyhose, Stretchy High Waist Sheer Solid Leggings.",
                "price": "$16.99 - $30.99",
                "rating": {
                    "rating": "3.7 out of 5 stars",
                    "total_ratings": 84,
                    "link": "/product-reviews/B09KV7BQ27/ref=zg_bsnr_fashion_cr_24/137-7357497-8285247?pd_rd_i=B09KV7BQ27"
                }
            },
            {
                "position": 25,
                "product_id": "B09MC53SQQ",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/GLIGLITTR-Translucent-Leggings-Pantyhose-Black-Pantyhose/dp/B09MC53SQQ/ref=zg_bsnr_fashion_25/137-7357497-8285247?pd_rd_i=B09N7FR87Z&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/41rzZ2CgAPL._AC_UL302_SR302,200_.jpg",
                "title": "GLIGLITTR Women Fleece Lined Tights Fake Translucent Thermal Velvet Leggings Winter Sheer Warm Pantyhose Footless Tights",
                "price": "$15.99 - $30.99",
                "rating": {
                    "rating": "3.7 out of 5 stars",
                    "total_ratings": 37,
                    "link": "/product-reviews/B09N7FR87Z/ref=zg_bsnr_fashion_cr_25/137-7357497-8285247?pd_rd_i=B09N7FR87Z"
                }
            },
            {
                "position": 26,
                "product_id": "B09R23K1PZ",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Brooches-Aesthetic-Clothing-Accessories-Ornament/dp/B09R23K1PZ/ref=zg_bsnr_fashion_26/137-7357497-8285247?pd_rd_i=B09R22JHJD&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/51wovlUppZL._AC_UL302_SR302,200_.jpg",
                "title": "Fashion Crystal Pearl Brooches, Fun Alloy Brooch Pins Aesthetic Shawl Pins for Women Gift Jewelry Clothing Accessories Orname",
                "price": "$18.50"
            },
            {
                "position": 27,
                "product_id": "B099FCB3Y5",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Shoelaces-Sneakers-Athletic-Running-Adults/dp/B099FCB3Y5/ref=zg_bsnr_fashion_27/137-7357497-8285247?pd_rd_i=B09MNQ9JFB&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71pGVUcMFuL._AC_UL302_SR302,200_.jpg",
                "title": "3 Pairs Shoe laces, 5/16\" Wide Flat Shoelaces for Sneakers Athletic Running Adults, Kids",
                "price": "$5.99 - $8.99",
                "rating": {
                    "rating": "4.5 out of 5 stars",
                    "total_ratings": 77,
                    "link": "/product-reviews/B09MNQ9JFB/ref=zg_bsnr_fashion_cr_27/137-7357497-8285247?pd_rd_i=B09MNQ9JFB"
                }
            },
            {
                "position": 28,
                "product_id": "B09NMXCJSR",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/C-C-Trendy-Oversized-Chunky-Slouchy/dp/B09NMXCJSR/ref=zg_bsnr_fashion_28/137-7357497-8285247?pd_rd_i=B09NMX7TS9&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/81HtLsD4keL._AC_UL302_SR302,200_.jpg",
                "title": "C.C Trendy Warm Oversized Chunky Soft Oversized Ribbed Slouchy Knit Hat with Visor Brim",
                "price": "$19.99",
                "rating": {
                    "rating": "4.7 out of 5 stars",
                    "total_ratings": 73,
                    "link": "/product-reviews/B09NMX7TS9/ref=zg_bsnr_fashion_cr_28/137-7357497-8285247?pd_rd_i=B09NMX7TS9"
                }
            },
            {
                "position": 29,
                "product_id": "B09LYFRF69",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Translucent-Thermal-Leggings-Pantyhose-Stretchy/dp/B09LYFRF69/ref=zg_bsnr_fashion_29/137-7357497-8285247?pd_rd_i=B09PBKWPML&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/415afOr+LmL._AC_UL302_SR302,200_.jpg",
                "title": "Fleece Lined Tights for Women Fake Translucent Thermal Leggings High Waist Sheer Warm Pantyhose Stretchy Footed Winter Tights",
                "price": "$15.87 - $25.99",
                "rating": {
                    "rating": "4.1 out of 5 stars",
                    "total_ratings": 26,
                    "link": "/product-reviews/B09PBKWPML/ref=zg_bsnr_fashion_cr_29/137-7357497-8285247?pd_rd_i=B09PBKWPML"
                }
            },
            {
                "position": 30,
                "product_id": "B07H82XSPN",
                "sponsored": false,
                "is_prime": false,
                "kindle_unlimited": false,
                "is_amazon_fresh": false,
                "is_whole_foods_market": false,
                "is_climate_pledge_friendly": false,
                "is_carousel": false,
                "link": "/Hanes-Womens-Underwear-Regular-Pack-Assorted/dp/B07H82XSPN/ref=zg_bsnr_fashion_30/137-7357497-8285247?pd_rd_i=B09QDL36WR&psc=1",
                "thumbnail": "https://images-na.ssl-images-amazon.com/images/I/71lvF+EqwUL._AC_UL302_SR302,200_.jpg",
                "title": "Hanes Women's 100% Cotton High-Waisted Panties Pack, Moisture-Wicking Underwear for Women, Multipack (Regular or Plus Size)",
                "price": "$7.00 - $19.25",
                "rating": {
                    "rating": "4.4 out of 5 stars",
                    "total_ratings": 887,
                    "link": "/product-reviews/B09QDL36WR/ref=zg_bsnr_fashion_cr_30/137-7357497-8285247?pd_rd_i=B09QDL36WR"
                }
            }
        ]
    }
}
```

</details>

<figure><img src="/files/ITsUBODSAFwKP2vHYxqr" alt=""><figcaption></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-new-releases.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.
