> ## Documentation Index
> Fetch the complete documentation index at: https://help.decodo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Amazon Bestsellers

> Web Scraping API Amazon Bestsellers Template

The `amazon_bestsellers` template is built to obtain Amazon Bestsellers pages.

<Note>
  ### Useful Links

  * [**Real-time**](https://help.decodo.com/docs/web-scraping-api-real-time-requests) and [**Asynchronous**](https://help.decodo.com/docs/web-scraping-api-asynchronous-requests) integration methods are available for this template.
  * [**Batch**](https://help.decodo.com/docs/web-scraping-api-asynchronous-requests#queue-multiple-tasks) requests are also supported.
</Note>

## Input Parameters

Request parameters available for the Amazon Bestsellers target:

| Parameter     | Type    | Required | Description                                                                                                                                                     |
| ------------- | ------- | -------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `target`      | string  | ✅        | Target type must be set to `amazon_sellers`.                                                                                                                    |
| `query`       | string  | ✅        | Browse node ID or search query. <br />Multi-word queries must be hyphen-separated, use "-" instead of spaces.                                                   |
| `headless`    | string  |          | `html` value enables JavaScript rendering. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-javascript-rendering)                                 |
| `parse`       | boolean |          | Automatically parses results when set to `true`. <br />Default value is `false`.                                                                                |
| `geo`         | string  |          | Set the delivery location to use when submitting the query. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-amazon-geo-parameter#)               |
| `domain`      | string  |          | Specify top-level domain. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-amazon-locale)                                                         |
| `locale`      | string  |          | Set the value to change your Amazon web page interface language. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-amazon-locale)                  |
| `currency`    | string  |          | Set the currency. [**Read more**](https://help.decodo.com/docs/web-scraping-api-amazon-currency)**.**                                                           |
| `device_type` | string  |          | Specify device type and browser. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-device-types)                                                   |
| `page_from`   | string  |          | Customize the starting page number. <br />Default value is `1`.                                                                                                 |
| `xhr`         | boolean |          | Set to `true` to retrieve a list of XHR and fetch requests.  <br />Default value is `false`.                                                                    |
| `markdown`    | boolean |          | Set to `true` to receive a Markdown response. [**Read more.**](https://help.decodo.com/docs/web-scraping-api-markdown-response) <br />Default value is `false`. |

### Request Examples

<CodeGroup>
  ```shellscript cURL theme={null}
  # update 'TOKEN VALUE' with your authorization token
  curl --request 'POST' \
          --url 'https://scraper-api.decodo.com/v2/scrape' \
          --header 'Accept: application/json' \
          --header 'Authorization: Basic TOKEN VALUE' \
          --header 'Content-Type: application/json' \
          --data '
      {
        "target": "amazon_bestsellers",
        "query": "mobile-apps",
        "page_from": "1",
        "parse": true
      }
  '
  ```

  ```javascript Node theme={null}

  const scrape = async() => {
    const response = await fetch("https://scraper-api.decodo.com/v2/scrape", {
      method: "POST",
      body: JSON.stringify({
        "target": "amazon_bestsellers",
        "query": "mobile-apps",
        "page_from": "1",
        "parse": true
      }),
      headers: {
        "Content-Type": "application/json",
        "Authorization": "Basic TOKEN VALUE" // update with your authorization token
      },
    }).catch(error => console.log(error));

    console.log(await response.json())
  }

  scrape()
  ```

  ```python Python theme={null}
  import requests
    
  url = "https://scraper-api.decodo.com/v2/scrape"
    
  payload = {
        "target": "amazon_bestsellers",
        "query": "mobile-apps",
        "page_from": "1",
        "parse": True
  }
    
  headers = {
      "accept": "application/json",
      "content-type": "application/json",
      "authorization": "Basic TOKEN VALUE" # update with your authorization token
  }
    
  response = requests.post(url, json=payload, headers=headers)
    
  print(response.text)
  ```
</CodeGroup>

## Output

Descriptions for fields in the parsed `JSON` `results` section are provided in the table below. Keep in mind that the number of fields can vary according to the provided search query.

| Results key | Description                                                     |
| ----------- | --------------------------------------------------------------- |
| `url`       | URL to the Amazon Bestseller page.                              |
| `page`      | The page number.                                                |
| `pages`     | The count of pages.                                             |
| `query`     | A query used in a request.                                      |
| `results`   | A dictionary of search results with their detailed information. |

#### Response Example

<CodeGroup>
  ```json JSON expandable theme={null}
  {
      "results": {
          "url": "https://www.amazon.com/Best-Sellers/zgbs/x/mobile-apps/?pg=1&language=en_US",
          "page": 1,
          "pages": 2,
          "query": "mobile-apps",
          "results": [
              {
                  "pos": 1,
                  "url": "/Mojang-Minecraft/dp/B00992CF6W/ref=zg_bs_g_mobile-apps_d_sccl_1/134-3202012-8028283?psc=1",
                  "asin": "B00992CF6W",
                  "price": 6.99,
                  "title": "Minecraft",
                  "rating": 4.4,
                  "currency": "USD",
                  "price_str": "$6.99",
                  "price_upper": 0,
                  "ratings_count": 153769
              },
              {
                  "pos": 2,
                  "url": "/RobTop-Games-Geometry-Dash/dp/B00EDTSKLU/ref=zg_bs_g_mobile-apps_d_sccl_2/134-3202012-8028283?psc=1",
                  "asin": "B00EDTSKLU",
                  "price": 2.99,
                  "title": "Geometry Dash",
                  "rating": 4.3,
                  "currency": "USD",
                  "price_str": "$2.99",
                  "price_upper": 0,
                  "ratings_count": 24323
              },
              {
                  "pos": 3,
                  "url": "/Naughty-Daddy-Family-Adventure-Games/dp/B0FBYDJW4J/ref=zg_bs_g_mobile-apps_d_sccl_3/134-3202012-8028283?psc=1",
                  "asin": "B0FBYDJW4J",
                  "price": 13.89,
                  "title": "Naughty Baby & Daddy Fun Hide Seek Family Adventure Games",
                  "rating": 2.2,
                  "currency": "USD",
                  "price_str": "$13.89",
                  "price_upper": 0,
                  "ratings_count": 10
              },
              {
                  "pos": 4,
                  "url": "/Chaos-Granny-Prank-Simulator-Games/dp/B0F5BWHKBW/ref=zg_bs_g_mobile-apps_d_sccl_4/134-3202012-8028283?psc=1",
                  "asin": "B0F5BWHKBW",
                  "price": 4.99,
                  "title": "Cat Chaos Granny Hell Prank Simulator Games",
                  "rating": 1.4,
                  "currency": "USD",
                  "price_str": "$4.99",
                  "price_upper": 0,
                  "ratings_count": 9
              },
              {
                  "pos": 5,
                  "url": "/Rope-Hero-Games-Spider-Fighter/dp/B0F9NR46YQ/ref=zg_bs_g_mobile-apps_d_sccl_5/134-3202012-8028283?psc=1",
                  "asin": "B0F9NR46YQ",
                  "price": 20.99,
                  "title": "Rope Hero Games - Spider Fighter Game",
                  "rating": 3,
                  "currency": "USD",
                  "price_str": "$20.99",
                  "price_upper": 0,
                  "ratings_count": 6
              },
              {
                  "pos": 6,
                  "url": "/Naughty-Baby-Simulator-Daddy-Daycare/dp/B0F5QDJ88X/ref=zg_bs_g_mobile-apps_d_sccl_6/134-3202012-8028283?psc=1",
                  "asin": "B0F5QDJ88X",
                  "price": 14.99,
                  "title": "Naughty Baby Simulator: Daddy Daycare Fun Game",
                  "rating": 2.2,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 7
              },
              {
                  "pos": 7,
                  "url": "/FereraWolrd-Games-Escape-Evil-Running/dp/B0DLHNV2VR/ref=zg_bs_g_mobile-apps_d_sccl_7/134-3202012-8028283?psc=1",
                  "asin": "B0DLHNV2VR",
                  "price": 14.99,
                  "title": "Escape Evil Running Head",
                  "rating": 2.6,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 21
              },
              {
                  "pos": 8,
                  "url": "/Prism-Pioneers-Rainbow-Friends-Playground/dp/B0C828D9K1/ref=zg_bs_g_mobile-apps_d_sccl_8/134-3202012-8028283?psc=1",
                  "asin": "B0C828D9K1",
                  "price": 4.99,
                  "title": "Rainbow Friends Playground",
                  "rating": 3.6,
                  "currency": "USD",
                  "price_str": "$4.99",
                  "price_upper": 0,
                  "ratings_count": 174
              },
              {
                  "pos": 9,
                  "url": "/Stickman-Prison-Police-Escape-Hide/dp/B0DHL9XNNW/ref=zg_bs_g_mobile-apps_d_sccl_9/134-3202012-8028283?psc=1",
                  "asin": "B0DHL9XNNW",
                  "price": 13.99,
                  "title": "Stickman Prison Police Escape Hide and Seek Game",
                  "rating": 2.8,
                  "currency": "USD",
                  "price_str": "$13.99",
                  "price_upper": 0,
                  "ratings_count": 16
              },
              {
                  "pos": 10,
                  "url": "/Makeup-Simulator-artistry-relaxation-virtual/dp/B0CHPGNM48/ref=zg_bs_g_mobile-apps_d_sccl_10/134-3202012-8028283?psc=1",
                  "asin": "B0CHPGNM48",
                  "price": 9.99,
                  "title": "Makeup Slime Simulator ASMR makeup artistry with ASMR relaxation and virtual models' beauty",
                  "rating": 3.5,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 214
              },
              {
                  "pos": 11,
                  "url": "/Dinosaur-Hunter-Games-Jurassic-Simulator/dp/B0F8PHRNFP/ref=zg_bs_g_mobile-apps_d_sccl_11/134-3202012-8028283?psc=1",
                  "asin": "B0F8PHRNFP",
                  "price": 11.99,
                  "title": "Dinosaur Hunter Games : Jurassic Universe & Dinosaur Hunting Simulator 3D - Merge Monster Dinosaur VS Godzilla & Kong",
                  "rating": 3.3,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 3
              },
              {
                  "pos": 12,
                  "url": "/Stickman-Hide-Strike-Police-Prison/dp/B0FGL9J2LP/ref=zg_bs_g_mobile-apps_d_sccl_12/134-3202012-8028283?psc=1",
                  "asin": "B0FGL9J2LP",
                  "price": 14.99,
                  "title": "Stickman Hide and Strike – Police Prison Escape Fun 2025",
                  "rating": 3,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 13,
                  "url": "/Simulator-World-Animal-Attack-Games/dp/B0CMD3PTQ2/ref=zg_bs_g_mobile-apps_d_sccl_13/134-3202012-8028283?psc=1",
                  "asin": "B0CMD3PTQ2",
                  "price": 11.99,
                  "title": "Real Wild Wolf Animal Simulator Clash Game - Open World Wolf Attack Games 2025",
                  "rating": 4,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 14,
                  "url": "/Hello-Kitty-Beauty-Salon-makeup/dp/B0F1TYWZ11/ref=zg_bs_g_mobile-apps_d_sccl_14/134-3202012-8028283?psc=1",
                  "asin": "B0F1TYWZ11",
                  "price": 9.99,
                  "title": "Hello Kitty: Beauty Salon. Fun mini games for kids with hair salon, nail salon and makeup studio for girls",
                  "rating": 4.1,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 30
              },
              {
                  "pos": 15,
                  "url": "/Real-Baby-Gangster-Crime-Fighting/dp/B0F21Z2SVY/ref=zg_bs_g_mobile-apps_d_sccl_15/134-3202012-8028283?psc=1",
                  "asin": "B0F21Z2SVY",
                  "price": 14.99,
                  "title": "Real Baby Gangster Crime City Town Fighting 3D",
                  "rating": 3.2,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 13
              },
              {
                  "pos": 16,
                  "url": "/CheeryPack-Battle-Royale-Shooter/dp/B0DR9X7M5K/ref=zg_bs_g_mobile-apps_d_sccl_16/134-3202012-8028283?psc=1",
                  "asin": "B0DR9X7M5K",
                  "price": 18,
                  "title": "Battle Royale: Shooter",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$18.00",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 17,
                  "url": "/Lovely-CoCo-Cat-Call-Game/dp/B0DP541C8B/ref=zg_bs_g_mobile-apps_d_sccl_17/134-3202012-8028283?psc=1",
                  "asin": "B0DP541C8B",
                  "price": 9.98,
                  "title": "Lovely CoCo Cat Call Game",
                  "rating": 1.3,
                  "currency": "USD",
                  "price_str": "$9.98",
                  "price_upper": 0,
                  "ratings_count": 4
              },
              {
                  "pos": 18,
                  "url": "/Horror-Tung-Haunted-Escape-Run/dp/B0FP94DTBM/ref=zg_bs_g_mobile-apps_d_sccl_18/134-3202012-8028283?psc=1",
                  "asin": "B0FP94DTBM",
                  "price": 14.99,
                  "title": "Horror Tung Tung Haunted Escape Run: Scary Ghost Survival 3D",
                  "rating": 5,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 19,
                  "url": "/Mine-Clicker-mining-simulator-Incremental/dp/B0C4F9X4SP/ref=zg_bs_g_mobile-apps_d_sccl_19/134-3202012-8028283?psc=1",
                  "asin": "B0C4F9X4SP",
                  "price": 14.99,
                  "title": "Mine Clicker: Gold mining simulator & Incremental games",
                  "rating": 3.4,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 266
              },
              {
                  "pos": 20,
                  "url": "/Monster-Truck-Stunts-Games-Extreme/dp/B0F8PNQYH1/ref=zg_bs_g_mobile-apps_d_sccl_20/134-3202012-8028283?psc=1",
                  "asin": "B0F8PNQYH1",
                  "price": 11.99,
                  "title": "Monster Truck Stunts Games - Extreme Off road Ramp Racing 2025",
                  "rating": 2.8,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 8
              },
              {
                  "pos": 21,
                  "url": "/Horror-Tung-Escape-Hunto-Sahur/dp/B0F9WZCMTK/ref=zg_bs_g_mobile-apps_d_sccl_21/134-3202012-8028283?psc=1",
                  "asin": "B0F9WZCMTK",
                  "price": 11.99,
                  "title": "Horror Tung Tung Escape - 3D Hunto Sahur Game 2025",
                  "rating": 2.7,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 22
              },
              {
                  "pos": 22,
                  "url": "/Lunar-Myth-Studios-Zombie-Survival/dp/B0FYY439ZJ/ref=zg_bs_g_mobile-apps_d_sccl_22/134-3202012-8028283?psc=1",
                  "asin": "B0FYY439ZJ",
                  "price": 18,
                  "title": "TNT Zombie Zone Survival",
                  "rating": 5,
                  "currency": "USD",
                  "price_str": "$18.00",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 23,
                  "url": "/Air-horn-Prank-Sound-Sounds/dp/B0FYRNYX92/ref=zg_bs_g_mobile-apps_d_sccl_23/134-3202012-8028283?psc=1",
                  "asin": "B0FYRNYX92",
                  "price": 4.99,
                  "title": "Air horn Prank Sound - New Fart horn & Hair Cut Sounds",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$4.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 24,
                  "url": "/Dalgona-Candy-Challenge-Honeycomb-Kitchen/dp/B09W88WVPJ/ref=zg_bs_g_mobile-apps_d_sccl_24/134-3202012-8028283?psc=1",
                  "asin": "B09W88WVPJ",
                  "price": 7.99,
                  "title": "Dalgona Candy Challenge - Honeycomb Kids Kitchen & Maker Game!",
                  "rating": 3.5,
                  "currency": "USD",
                  "price_str": "$7.99",
                  "price_upper": 0,
                  "ratings_count": 68
              },
              {
                  "pos": 25,
                  "url": "/Steal-It-Game-Run/dp/B0FQWL95FT/ref=zg_bs_g_mobile-apps_d_sccl_25/134-3202012-8028283?psc=1",
                  "asin": "B0FQWL95FT",
                  "price": 18.89,
                  "title": "Steal It Game Steal Run",
                  "rating": 2,
                  "currency": "USD",
                  "price_str": "$18.89",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 26,
                  "url": "/FireMirror-Pro-Mirroring-Receiver-Support/dp/B0FDT1D44G/ref=zg_bs_g_mobile-apps_d_sccl_26/134-3202012-8028283?psc=1",
                  "asin": "B0FDT1D44G",
                  "price": 8.99,
                  "title": "FireMirror Pro: Screen Mirroring Receiver (Support AirPlay Only)",
                  "rating": 3.9,
                  "currency": "USD",
                  "price_str": "$8.99",
                  "price_upper": 0,
                  "ratings_count": 117
              },
              {
                  "pos": 27,
                  "url": "/VISHNYDEVGAMES-LIMITED-Serpent-Clash-Arena/dp/B0FX4X1LQC/ref=zg_bs_g_mobile-apps_d_sccl_27/134-3202012-8028283?psc=1",
                  "asin": "B0FX4X1LQC",
                  "price": 13.99,
                  "title": "Serpent Clash Arena - PLATINUM",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$13.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 28,
                  "url": "/Hello-Kitty-Kids-Doctor-Hospital/dp/B0C8PG4M21/ref=zg_bs_g_mobile-apps_d_sccl_28/134-3202012-8028283?psc=1",
                  "asin": "B0C8PG4M21",
                  "price": 10,
                  "title": "Hello Kitty: Kids Doctor in Hospital",
                  "rating": 3.9,
                  "currency": "USD",
                  "price_str": "$10.00",
                  "price_upper": 0,
                  "ratings_count": 257
              },
              {
                  "pos": 29,
                  "url": "/MOONSUNDEV-LIMITED-Hugger-Dash-DIAMOND/dp/B0FX4L3338/ref=zg_bs_g_mobile-apps_d_sccl_29/134-3202012-8028283?psc=1",
                  "asin": "B0FX4L3338",
                  "price": 9.99,
                  "title": "Hugger Dash - DIAMOND",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 30,
                  "url": "/ANOGA-GAMES-LIMITED-Simple-Toys/dp/B0FYQQSVJW/ref=zg_bs_g_mobile-apps_d_sccl_30/134-3202012-8028283?psc=1",
                  "asin": "B0FYQQSVJW",
                  "price": 14.99,
                  "title": "Simple Toys - Gold",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 31,
                  "url": "/Dress-Makeup-Spray-Clothes-Designer/dp/B0FYRCVPNL/ref=zg_bs_g_mobile-apps_d_sccl_31/134-3202012-8028283?psc=1",
                  "asin": "B0FYRCVPNL",
                  "price": 14.99,
                  "title": "Tie Dye Art New Dress Makeup 3D Spray Paint Clothes Designer Dress Games 2025",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 32,
                  "url": "/Frost-Clash-Snow-Brawl-PLATINUM/dp/B0FX4JCFR4/ref=zg_bs_g_mobile-apps_d_sccl_32/134-3202012-8028283?psc=1",
                  "asin": "B0FX4JCFR4",
                  "price": 9.99,
                  "title": "Frost Clash: Snow Brawl - PLATINUM",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 33,
                  "url": "/Sketch-Clash-Battle-Draw-PLATINUM/dp/B0FX4JSBGL/ref=zg_bs_g_mobile-apps_d_sccl_33/134-3202012-8028283?psc=1",
                  "asin": "B0FX4JSBGL",
                  "price": 9.99,
                  "title": "Sketch Clash: Battle Draw - PLATINUM",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 34,
                  "url": "/Nickelodeon-PAW-Patrol-Pups-Rescue/dp/B0141KIMPE/ref=zg_bs_g_mobile-apps_d_sccl_34/134-3202012-8028283?psc=1",
                  "asin": "B0141KIMPE",
                  "price": 1.99,
                  "title": "PAW Patrol: Pups to the Rescue",
                  "rating": 4.3,
                  "currency": "USD",
                  "price_str": "$1.99",
                  "price_upper": 0,
                  "ratings_count": 2150
              },
              {
                  "pos": 35,
                  "url": "/Dinosaur-Monster-Smasher-Rampage-Games/dp/B0DXLBFYGV/ref=zg_bs_g_mobile-apps_d_sccl_35/134-3202012-8028283?psc=1",
                  "asin": "B0DXLBFYGV",
                  "price": 19.99,
                  "title": "Dinosaur Revolt Battle Wild Monster Smasher Rampage Animal Hunter Gorilla Dinosaur Games",
                  "rating": 2.2,
                  "currency": "USD",
                  "price_str": "$19.99",
                  "price_upper": 0,
                  "ratings_count": 7
              },
              {
                  "pos": 36,
                  "url": "/MOONSUNDEV-LIMITED-Time-Warp-Runner/dp/B0FX4GTLFP/ref=zg_bs_g_mobile-apps_d_sccl_36/134-3202012-8028283?psc=1",
                  "asin": "B0FX4GTLFP",
                  "price": 9.99,
                  "title": "Time Warp Runner - DIAMOND",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 37,
                  "url": "/Wheres-your-Naughty-Twins-Simulator/dp/B0CWVLT5GY/ref=zg_bs_g_mobile-apps_d_sccl_37/134-3202012-8028283?psc=1",
                  "asin": "B0CWVLT5GY",
                  "price": 14.99,
                  "title": "Where's your Naughty Twins Baby 3D Simulator",
                  "rating": 2.8,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 100
              },
              {
                  "pos": 38,
                  "url": "/Ultimate-Lawn-Mowing-Simulator-Master/dp/B07BVHXYQL/ref=zg_bs_g_mobile-apps_d_sccl_38/134-3202012-8028283?psc=1",
                  "asin": "B07BVHXYQL",
                  "price": 11.99,
                  "title": "Ultimate Lawn Mowing Simulator 3D : Garden Mower Master - Grass Cutting Games 2025",
                  "rating": 2.6,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 40
              },
              {
                  "pos": 39,
                  "url": "/Mind-Over-Matter-3D-PLATINUM/dp/B0FX4HYXYY/ref=zg_bs_g_mobile-apps_d_sccl_39/134-3202012-8028283?psc=1",
                  "asin": "B0FX4HYXYY",
                  "price": 13.99,
                  "title": "Mind Over Matter 3D - PLATINUM",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$13.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 40,
                  "url": "/Crime-City-Underworld-Wars-RUBY/dp/B0FX4JL86L/ref=zg_bs_g_mobile-apps_d_sccl_40/134-3202012-8028283?psc=1",
                  "asin": "B0FX4JL86L",
                  "price": 9.99,
                  "title": "Crime City: Underworld Wars - RUBY",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 41,
                  "url": "/Fidget-Trading-Antistress-Master-ASMR/dp/B0FYTDQ2V2/ref=zg_bs_g_mobile-apps_d_sccl_41/134-3202012-8028283?psc=1",
                  "asin": "B0FYTDQ2V2",
                  "price": 14.99,
                  "title": "Fidget Trading Pop it Antistress Trading Master 3D ASMR Toys 2025",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 42,
                  "url": "/Miss-World-Dress-Make-Girls/dp/B0G1KWC39M/ref=zg_bs_g_mobile-apps_d_sccl_42/134-3202012-8028283?psc=1",
                  "asin": "B0G1KWC39M",
                  "price": 23.99,
                  "title": "Miss World Dress Up Make Up Girls Game",
                  "rating": 1,
                  "currency": "USD",
                  "price_str": "$23.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 43,
                  "url": "/Car-Smash-Simulator-Driving-Demolition/dp/B0FD367QWN/ref=zg_bs_g_mobile-apps_d_sccl_43/134-3202012-8028283?psc=1",
                  "asin": "B0FD367QWN",
                  "price": 11.99,
                  "title": "Car Smash Simulator - Driving Demolition Derby Games 2025",
                  "rating": 2.2,
                  "currency": "USD",
                  "price_str": "$11.99",
                  "price_upper": 0,
                  "ratings_count": 6
              },
              {
                  "pos": 44,
                  "url": "/Draw-Save-Doge-Rescue-Attack/dp/B0FYTGZWZ9/ref=zg_bs_g_mobile-apps_d_sccl_44/134-3202012-8028283?psc=1",
                  "asin": "B0FYTGZWZ9",
                  "price": 14.99,
                  "title": "Draw to Save The Doge - Rescue my pet from Bees Attack Games 2025",
                  "rating": 5,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 45,
                  "url": "/Sesame-Workshop-Street-Alphabet-Kitchen/dp/B07S76CXLZ/ref=zg_bs_g_mobile-apps_d_sccl_45/134-3202012-8028283?psc=1",
                  "asin": "B07S76CXLZ",
                  "price": 2.99,
                  "title": "Sesame Street Alphabet Kitchen",
                  "rating": 4.4,
                  "currency": "USD",
                  "price_str": "$2.99",
                  "price_upper": 0,
                  "ratings_count": 1831
              },
              {
                  "pos": 46,
                  "url": "/MOONSUNDEV-LIMITED-Magic-Wedding-Story/dp/B0FX4TCLG5/ref=zg_bs_g_mobile-apps_d_sccl_46/134-3202012-8028283?psc=1",
                  "asin": "B0FX4TCLG5",
                  "price": 14.99,
                  "title": "Magic Wedding Story - DIAMOND",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 47,
                  "url": "/Splash-Racer-Water-Slide-World/dp/B0FX4JPZBX/ref=zg_bs_g_mobile-apps_d_sccl_47/134-3202012-8028283?psc=1",
                  "asin": "B0FX4JPZBX",
                  "price": 9.99,
                  "title": "Splash Racer: Water Slide World - RUBY",
                  "rating": 1,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 1
              },
              {
                  "pos": 48,
                  "url": "/Escape-from-Prison-Run-Hide/dp/B0DWLL7TXQ/ref=zg_bs_g_mobile-apps_d_sccl_48/134-3202012-8028283?psc=1",
                  "asin": "B0DWLL7TXQ",
                  "price": 12.99,
                  "title": "Escape from Prison: Run & Hide",
                  "rating": 3.9,
                  "currency": "USD",
                  "price_str": "$12.99",
                  "price_upper": 0,
                  "ratings_count": 5
              },
              {
                  "pos": 49,
                  "url": "/Hoop-Clash-Dunk-Challenge-RUBY/dp/B0FX349M65/ref=zg_bs_g_mobile-apps_d_sccl_49/134-3202012-8028283?psc=1",
                  "asin": "B0FX349M65",
                  "price": 9.99,
                  "title": "Hoop Clash: Dunk Challenge - RUBY",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$9.99",
                  "price_upper": 0,
                  "ratings_count": 0
              },
              {
                  "pos": 50,
                  "url": "/Nail-Art-color-Simulator-Master/dp/B0FYX9BQSS/ref=zg_bs_g_mobile-apps_d_sccl_50/134-3202012-8028283?psc=1",
                  "asin": "B0FYX9BQSS",
                  "price": 14.99,
                  "title": "Nail Art color Simulator - Tato Master 2025",
                  "rating": 0,
                  "currency": "USD",
                  "price_str": "$14.99",
                  "price_upper": 0,
                  "ratings_count": 0
              }
          ],
          "parse_status_code": 12000
      },
      "errors": [],
      "status_code": 12000,
      "task_id": "7396917720794536961"
  }
  ```
</CodeGroup>

***

<Columns cols={2}>
  <Card title="Support" href="https://direct.lc.chat/12092754" cta="Let's chat!">
    Need help or just want to say hello? Our support is available 24/7. \
    You can also reach us anytime via email at [support@decodo.com](mailto:support@decodo.com).
  </Card>

  <Card title="Feedback" href="mailto:feedback@decodo.com" cta="Share feedback">
    Can't find what you're looking for? Request an article! \
    Have feedback? Share your thoughts on how we can improve.
  </Card>
</Columns>
