> ## 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

> 网页抓取 API Amazon Bestsellers 目标

<Danger>
  核心版和高级版套餐已停止销售。请考虑迁移到一体化网络爬虫 API；[请点击此处查看指南](https://help.decodo.com/docs/cn/web-scraping-api-migration-guide).
</Danger>

`amazon_bestsellers` 目标用于获取 Amazon 畅销商品页面。

<Note>
  ### 有用链接

  * 此目标适用于 **Web API Advanced 计划**。
  * 此模板支持[**实时**](https://help.decodo.com/docs/cn/web-scraping-api-real-time-requests)和[**异步**](https://help.decodo.com/docs/cn/web-scraping-api-asynchronous-requests)集成方法。
  * 还支持[**批量**](https://help.decodo.com/docs/cn/web-scraping-api-asynchronous-requests#queue-multiple-tasks)请求。
</Note>

## 输入参数

Amazon Bestsellers 目标可用的请求参数：

| 参数            | 类型      | 必需 | 描述                                                                                                                                        |
| ------------- | ------- | -- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `target`      | string  | ✅  | 目标类型必须设置为 `amazon_sellers`。                                                                                                               |
| `query`       | string  | ✅  | 浏览节点 ID 或搜索查询。<br />多词查询必须用连字符分隔，使用 "-" 代替空格。                                                                                             |
| `headless`    | string  |    | `html` 值启用 JavaScript 渲染。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-javascript-rendering-deprecated)                    |
| `parse`       | boolean |    | 设置为 `true` 时自动解析结果。<br />默认值为 `false`。                                                                                                    |
| `geo`         | string  |    | 设置提交查询时使用的配送位置。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-amazon-geo-parameter-deprecated)                              |
| `domain`      | string  |    | 指定顶级域名。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-amazon-locale-deprecated)                                             |
| `locale`      | string  |    | 设置该值以更改您的 Amazon 网页界面语言。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-amazon-locale-deprecated)                            |
| `currency`    | string  |    | 设置货币。[**了解更多**](https://help.decodo.com/docs/cn/web-scraping-api-amazon-currency-deprecated)                                              |
| `device_type` | string  |    | 指定设备类型和浏览器。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-device-types-deprecated)                                          |
| `page_from`   | string  |    | 自定义起始页码。<br />默认值为 `1`。                                                                                                                   |
| `xhr`         | boolean |    | 设置为 `true` 以检索 XHR 和 fetch 请求列表。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-fetch-and-xhr-deprecated)<br />默认值为 `false`。 |
| `markdown`    | boolean |    | 设置为 `true` 以接收 Markdown 响应。[**了解更多。**](https://help.decodo.com/docs/cn/web-scraping-api-markdown-response-deprecated)<br />默认值为 `false`。  |

### 请求示例

<CodeGroup>
  ```shellscript cURL theme={null}
  # 将 'TOKEN VALUE' 更新为您的授权令牌
  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" // 更新为您的授权令牌
      },
    }).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" # 更新为您的授权令牌
  }
    
  response = requests.post(url, json=payload, headers=headers)
    
  print(response.text)
  ```
</CodeGroup>

## 输出

下表提供了已解析的 `JSON` `results` 部分中字段的描述。请注意，字段数量可能会根据提供的搜索查询而有所不同。

| 结果键       | 描述                  |
| --------- | ------------------- |
| `url`     | Amazon 畅销商品页面的 URL。 |
| `page`    | 页码。                 |
| `pages`   | 页数。                 |
| `query`   | 请求中使用的查询。           |
| `results` | 包含详细信息的搜索结果字典。      |

#### 响应示例

<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="支持" href="https://direct.lc.chat/12092754" cta="让我们聊聊！">
    需要帮助或只是想打个招呼？我们的支持团队全天候为您服务。 \
    您也可以随时通过电子邮件 [support@decodo.com](mailto:support@decodo.com) 联系我们。
  </Card>

  <Card title="反馈" href="mailto:feedback@decodo.com" cta="分享反馈">
    找不到您要找的内容？请求一篇文章！ \
    有反馈意见？分享您对我们如何改进的想法。
  </Card>
</Columns>
