> ## 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 eBay marketplaces with their domains, currencies, locales, and site ids.

## Response

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

  <Expandable title="MarketInfo object">
    <ResponseField name="code" type="string">Market code (e.g. `US`, `GB`, `DE`).</ResponseField>
    <ResponseField name="domain" type="string">eBay domain TLD to use in the `domain` query parameter (e.g. `com`, `co.uk`).</ResponseField>
    <ResponseField name="country" type="string">ISO 3166-1 alpha-2 country code.</ResponseField>
    <ResponseField name="currency" type="string">ISO 4217 currency code used in this market.</ResponseField>
    <ResponseField name="locale" type="string">BCP-47 locale (e.g. `en-US`).</ResponseField>
    <ResponseField name="name" type="string">Marketplace country name.</ResponseField>
    <ResponseField name="site_id" type="integer">eBay legacy global site id.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "markets": [
    { "code": "US", "domain": "com", "country": "US", "currency": "USD", "locale": "en-US", "name": "United States", "site_id": 0 },
    { "code": "GB", "domain": "co.uk", "country": "GB", "currency": "GBP", "locale": "en-GB", "name": "United Kingdom", "site_id": 3 },
    { "code": "DE", "domain": "de", "country": "DE", "currency": "EUR", "locale": "de-DE", "name": "Germany", "site_id": 77 },
    { "code": "AU", "domain": "com.au", "country": "AU", "currency": "AUD", "locale": "en-AU", "name": "Australia", "site_id": 15 }
  ]
}
```

<Note>
  Listing markets is a **free** reference endpoint (0 credits).
</Note>


## OpenAPI

````yaml GET /v1/ebay/markets
openapi: 3.1.0
info:
  title: ScrapeBadger eBay API
  version: 1.0.0
  description: >-
    eBay marketplace scraping API for searching active and completed (sold)
    listings, fetching item details, reviews, sellers, seller listings and
    feedback, category browsing, autocomplete, and reference data across 18
    marketplaces.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/ebay/markets:
    get:
      tags:
        - eBay Reference
      summary: List Markets
      description: List all supported eBay marketplaces.
      operationId: listEbayMarkets
      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, GB, DE).
                        domain:
                          type: string
                          description: eBay domain TLD for this market (e.g. com, co.uk).
                        country:
                          type: string
                          description: ISO 3166-1 alpha-2 country code.
                        currency:
                          type: string
                          description: ISO 4217 currency code.
                        locale:
                          type: string
                          description: BCP-47 locale (e.g. en-US).
                        name:
                          type: string
                          description: Marketplace country name.
                        site_id:
                          type: integer
                          description: eBay legacy global site id.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````