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

# Walmart Geo

> Web Scraping API Walmart Geo Parameter

For Walmart, you can choose from these geo parameter values:

* Using a zip code, for example: *`99950`*

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

* Using a full country name, for example: *`Italy`*

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