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

# 沃尔玛地理位置

> 网页抓取 API 沃尔玛地理位置参数

对于沃尔玛，您可以从以下地理位置参数值中选择：

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

<CodeGroup>
  ```shellscript cURL wrap 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": "walmart",
        "url": "https://www.walmart.com/cp/new-year-new-you/4399818",
        "geo": "99950"
      }
  '
  ```
</CodeGroup>

* 使用完整的国家名称，例如：*`Italy`*

<CodeGroup>
  ```shellscript cURL wrap 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": "walmart",
        "url": "https://www.walmart.com/cp/new-year-new-you/4399818",
        "geo": "Italy"
      }
  '
  ```
</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>
