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

> 网页抓取 API Amazon Geo 参数

对于 Amazon，您可以从以下 geo 参数值中选择：

* 使用邮政编码，例如：*`99950`*

<CodeGroup>
  ```shellscript cURL theme={null}
  # 将 'TOKEN VALUE' 更新为您的授权令牌
  curl --request POST \
       --url 'https://scraper-api.decodo.com/v2/scrape?amazon_search=' \
       --header 'accept: application/json' \
       --header 'authorization: Basic TOKEN VALUE' \
       --header 'content-type: application/json' \
       --data '
  {
    "target": "amazon",
    "url": "https://www.amazon.com/dp/B09H74FXNW",
    "geo": "99950" 
  }
  ,
  ```
</CodeGroup>

* 使用 ISO-2 国家代码，例如：*`IT`*

<CodeGroup>
  ```shellscript cURL theme={null}
  # 将 'TOKEN VALUE' 更新为您的授权令牌
  curl --request POST \
       --url 'https://scraper-api.decodo.com/v2/scrape?amazon_search=' \
       --header 'accept: application/json' \
       --header 'authorization: Basic TOKEN VALUE' \
       --header 'content-type: application/json' \
       --data '
  {
    "target": "amazon",
    "url": "https://www.amazon.com/dp/B09H74FXNW",
    "geo": "IT" 
  }
  ,
  ```
</CodeGroup>

<Note>
  ### Amazon 的上述规则有一些例外情况：

  * 由于 Amazon 配置，`.cn`、`.com.tr`、`.com.be` 和 `.nl` 域名作为 geo 参数值将无法正常工作。
  * `.com.au` 域名仅适用于澳大利亚订单，因此您需要在 geo 参数中使用澳大利亚邮政编码。
  * `.ae` 域名支持阿联酋城市名称，而不是邮政编码，例如：`"geo": "Abu Dhabi"`。
</Note>

<Note>
  请注意，如果 **domain** 参数与 **geo** 匹配，例如 .com 与 US，.co.jp 与 JP，您必须使用邮政编码而不是国家的 ISO 代码。
</Note>

#### **正确**请求示例

<CodeGroup>
  ```shellscript cURL theme={null}
  # 将 'TOKEN VALUE' 更新为您的授权令牌
  curl --request POST \
       --url 'https://scraper-api.decodo.com/v2/scrape?amazon_search=' \
       --header 'accept: application/json' \
       --header 'authorization: Basic TOKEN VALUE' \
       --header 'content-type: application/json' \
       --data '
  {
    "target": "amazon_search",
    "query": "reverse uno card",
    "domain": "com", # 美国域名
    "geo": "00000"  # 美国邮政编码
  }
  '
  ```
</CodeGroup>

#### **错误**请求示例

<CodeGroup>
  ```bash cURL theme={null}
  # 将 'TOKEN VALUE' 更新为您的授权令牌
  curl --request POST \
       --url 'https://scraper-api.decodo.com/v2/scrape?amazon_search=' \
       --header 'accept: application/json' \
       --header 'authorization: Basic TOKEN VALUE' \
       --header 'content-type: application/json' \
       --data '
  {
    "target": "amazon_search",
    "query": "reverse uno card",
    "domain": "com", # 美国域名
    "geo": "US" # 美国 ISO 代码
  }
  '
  ```
</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>
