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

> Web Scraping API Amazon Locale Parameter

<Danger>
  Core and Advanced plans are no longer available for purchase. Please consider migrating to the all-in-one Web Scraper API; check out the guide [here](https://help.decodo.com/docs/web-scraping-api-migration-guide).
</Danger>

Some Amazon targets accept a `locale` parameter. The `locale` parameter is paired with the `domain` parameter. The following combinations are valid:

| Domain    | Locale  | Interface language             |
| --------- | ------- | ------------------------------ |
| `.ae`     | `en_AE` | English (United Arab Emirates) |
| `.ae`     | `ar_AE` | Arabic (United Arab Emirates)  |
| `.ca`     | `fr_CA` | French (Canada)                |
| `.ca`     | `en_CA` | English (Canada)               |
| `.co.jp`  | `ja_JP` | Japanese                       |
| `.co.jp`  | `en_US` | English (United States)        |
| `.co.jp`  | `zh_CN` | Chinese                        |
| `.co.uk`  | `en_GB` | English (United Kingdom)       |
| `.com`    | `en_US` | English (United States)        |
| `.com`    | `es_US` | Spanish (United States)        |
| `.com`    | `ar_AE` | Arabic (United Arab Emirates)  |
| `.com`    | `de_US` | German (United States)         |
| `.com`    | `he_IL` | Hebrew                         |
| `.com`    | `ko_KR` | Korean                         |
| `.com`    | `pt_BR` | Portuguese (Brazil)            |
| `.com`    | `zh_CN` | Chinese                        |
| `.com`    | `zh_TW` | Taiwanese                      |
| `.com.au` | `en_AU` | English (Australia)            |
| `.com.be` | `fr_BE` | French (Belgium)               |
| `.com.be` | `nl_BE` | Dutch (Belgium)                |
| `.com.be` | `en_GB` | English (United Kingdom)       |
| `.com.br` | `pt_BR` | Portuguese (Brazil)            |
| `.com.mx` | `es_MX` | Spanish (Mexico)               |
| `.com.tr` | `tr_TR` | Turkish                        |
| `.de`     | `de_DK` | Danish                         |
| `.de`     | `de_DE` | German                         |
| `.de`     | `en_GB` | English (United Kingdom)       |
| `.de`     | `cs_CZ` | Czech                          |
| `.de`     | `nl_NL` | Dutch (Netherlands)            |
| `.de`     | `pl_PL` | Polish                         |
| `.de`     | `tr_TR` | Turkish                        |
| `.eg`     | `ar_AE` | Arabic (United Arab Emirates)  |
| `.eg`     | `en_AE` | English (United Arab Emirates) |
| `.es`     | `es_ES` | Spanish                        |
| `.es`     | `pt_PT` | Portuguese (Portugal)          |
| `.es`     | `en_GB` | English (United Kingdom)       |
| `.fr`     | `en_GB` | English (United Kingdom)       |
| `.fr`     | `fr_FR` | French                         |
| `.in`     | `en_IN` | English (India)                |
| `.in`     | `hi_IN` | Hindi (India)                  |
| `.in`     | `ta_IN` | Tamil (India)                  |
| `.in`     | `te_IN` | Telugu (India)                 |
| `.in`     | `kn_IN` | Kannada (India)                |
| `.in`     | `ml_IN` | Malayalam (India)              |
| `.in`     | `bn_IN` | Bengali (India)                |
| `.in`     | `mr_IN` | Marathi (India)                |
| `.it`     | `en_GB` | English (United Kingdom)       |
| `.it`     | `it_IT` | Italian                        |
| `.nl`     | `nl_NL` | Dutch (Netherlands)            |
| `.nl`     | `en_GB` | English (United Kingdom)       |
| `.sa`     | `ar_AE` | Arabic (United Arab Emirates)  |
| `.sa`     | `en_AE` | English (United Arab Emirates) |
| `.se`     | `sv_SE` | Swedish                        |
| `.se`     | `en_GB` | English (United Kingdom)       |
| `.sg`     | `sg_EN` | English (Singapore)            |

#### Example of a correct `locale` and `domain` combination

<CodeGroup>
  ```shellscript cURL theme={null}
  curl --request 'POST' \
          --url 'https://scraper-api.decodo.com/v2/scrape' \
          --header 'Accept: application/json' \
          --header 'Authorization: Basic ==' \
          --header 'Content-Type: application/json' \
          --data '
      {
        "target": "amazon_sellers",
        "query": "A1R0Z7FJGTKESH",
        "locale": "nl_BE",
        "domain": "com.be",
        "parse": true
      }
  '
  ```
</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>
