> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapebadger.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Markets

> List all supported Amazon marketplaces.

## Response

<ResponseField name="markets" type="array">
  Array of supported Amazon marketplaces.

  <Expandable title="Market object">
    <ResponseField name="code" type="string">Market code (e.g. `"US"`, `"UK"`, `"DE"`).</ResponseField>
    <ResponseField name="domain" type="string">Amazon domain TLD to use in the `domain` query parameter (e.g. `"com"`, `"co.uk"`).</ResponseField>
    <ResponseField name="name" type="string">Marketplace country name.</ResponseField>
    <ResponseField name="currency" type="string">ISO 4217 currency code used in this market.</ResponseField>
    <ResponseField name="language" type="string">Default locale for this market.</ResponseField>
    <ResponseField name="country_code" type="string">ISO country code used for proxy geo-targeting.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "markets": [
    { "code": "US", "domain": "com", "name": "United States", "currency": "USD", "language": "en-US", "country_code": "US" },
    { "code": "UK", "domain": "co.uk", "name": "United Kingdom", "currency": "GBP", "language": "en-GB", "country_code": "GB" },
    { "code": "DE", "domain": "de", "name": "Germany", "currency": "EUR", "language": "de-DE", "country_code": "DE" },
    { "code": "JP", "domain": "co.jp", "name": "Japan", "currency": "JPY", "language": "ja-JP", "country_code": "JP" }
  ]
}
```

<Note>
  The markets list is **free** (0 credits).
</Note>


## OpenAPI

````yaml GET /v1/amazon/markets
openapi: 3.1.0
info:
  title: ScrapeBadger Amazon API
  version: 1.0.0
  description: >-
    Amazon marketplace scraping API for searching products, fetching product
    details, offers, reviews, listings, sellers, and reference data across 20
    marketplaces.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/amazon/markets:
    get:
      tags:
        - Amazon Reference
      summary: List Markets
      description: List all supported Amazon marketplaces.
      operationId: listAmazonMarkets
      parameters: []
      responses:
        '200':
          description: Supported marketplaces
          content:
            application/json:
              schema:
                type: object
                properties:
                  markets:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                          description: Market code (e.g. US, UK, DE).
                        domain:
                          type: string
                          description: Amazon domain TLD for this market (e.g. com, co.uk).
                        name:
                          type: string
                          description: Marketplace country name.
                        currency:
                          type: string
                          description: ISO 4217 currency code.
                        language:
                          type: string
                          description: Default locale for this market.
                        country_code:
                          type: string
                          description: ISO country code used for proxy geo-targeting.
              example:
                markets:
                  - code: US
                    domain: com
                    name: United States
                    currency: USD
                    language: en-US
                    country_code: US
                  - code: UK
                    domain: co.uk
                    name: United Kingdom
                    currency: GBP
                    language: en-GB
                    country_code: GB
                  - code: DE
                    domain: de
                    name: Germany
                    currency: EUR
                    language: de-DE
                    country_code: DE
                  - code: JP
                    domain: co.jp
                    name: Japan
                    currency: JPY
                    language: ja-JP
                    country_code: JP
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````