> ## 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 Zillow's advertised coverage markets with their domain, currency, and locale.

## Response

<ResponseField name="markets" type="array">
  Array of advertised coverage markets. Informational only — Zillow serves all inventory from `zillow.com`, so there is no `market` routing parameter.

  <Expandable title="Market object">
    <ResponseField name="code" type="string">Market code (`US` or `CA`).</ResponseField>
    <ResponseField name="domain" type="string">Portal domain (always `zillow.com`).</ResponseField>
    <ResponseField name="country" type="string">ISO 3166-1 alpha-2 country code.</ResponseField>
    <ResponseField name="currency" type="string">ISO 4217 currency code (always `USD`).</ResponseField>
    <ResponseField name="locale" type="string">BCP-47 locale (always `en-US`).</ResponseField>
    <ResponseField name="name" type="string">Market country name.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "markets": [
    { "code": "US", "domain": "zillow.com", "country": "US", "currency": "USD", "locale": "en-US", "name": "United States" },
    { "code": "CA", "domain": "zillow.com", "country": "CA", "currency": "USD", "locale": "en-US", "name": "Canada (MLS feed on zillow.com)" }
  ]
}
```

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


## OpenAPI

````yaml GET /v1/zillow/markets
openapi: 3.1.0
info:
  title: ScrapeBadger Zillow API
  version: 1.0.0
  description: >-
    Dedicated Zillow scraping API for searching for-sale / for-rent / sold
    listings, fetching maximal property detail (resoFacts home facts,
    price/tax/Zestimate history, schools, agent attribution, mortgage rates,
    photos), agent profiles (reviews, past sales, licenses), region/address
    autocomplete, and coverage reference data.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/zillow/markets:
    get:
      tags:
        - Zillow Reference
      summary: List Markets
      description: List Zillow coverage regions (US + Canada, all served via zillow.com).
      operationId: listZillowMarkets
      parameters: []
      responses:
        '200':
          description: Coverage markets
          content:
            application/json:
              schema:
                type: object
                properties:
                  markets:
                    type: array
                    items:
                      $ref: '#/components/schemas/MarketInfo'
components:
  schemas:
    MarketInfo:
      description: A supported coverage region (for /markets).
      properties:
        code:
          type: string
        country:
          type: string
        currency:
          type: string
        locale:
          type: string
        name:
          type: string
        domain:
          type: string
      required:
        - code
        - country
        - currency
        - locale
        - name
        - domain
      type: object
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````