> ## 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 Vinted markets with their domains and country codes.

## Response

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

  <Expandable title="Market object">
    <ResponseField name="code" type="string">Market code to use in the `market` query parameter (e.g. `"fr"`, `"de"`).</ResponseField>
    <ResponseField name="title" type="string">Country name.</ResponseField>
    <ResponseField name="domain" type="string">Vinted domain for this market (e.g. `"vinted.fr"`).</ResponseField>
    <ResponseField name="currency" type="string">ISO 4217 currency code used in this market.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "markets": [
    {
      "code": "fr",
      "title": "France",
      "domain": "vinted.fr",
      "currency": "EUR"
    },
    {
      "code": "de",
      "title": "Germany",
      "domain": "vinted.de",
      "currency": "EUR"
    },
    {
      "code": "uk",
      "title": "United Kingdom",
      "domain": "vinted.co.uk",
      "currency": "GBP"
    },
    {
      "code": "us",
      "title": "United States",
      "domain": "vinted.com",
      "currency": "USD"
    }
  ]
}
```

<Note>
  Each markets list request costs **1 credit**. Failed requests are not charged.
</Note>


## OpenAPI

````yaml GET /v1/vinted/markets
openapi: 3.1.0
info:
  title: ScrapeBadger Vinted API
  version: 1.0.0
  description: >-
    Vinted marketplace scraping API for searching items, fetching details, user
    profiles, and reference data.
servers:
  - url: https://scrapebadger.com
    description: Production
security:
  - apiKeyAuth: []
paths:
  /v1/vinted/markets:
    get:
      summary: List Markets
      description: List all supported Vinted markets with their domains and country codes.
      operationId: listVintedMarkets
      parameters: []
      responses:
        '200':
          description: Supported markets
          content:
            application/json:
              schema:
                type: object
                properties:
                  markets:
                    type: array
                    items:
                      type: object
                      properties:
                        code:
                          type: string
                          description: Market code (e.g. "fr", "de").
                        title:
                          type: string
                          description: Country name.
                        domain:
                          type: string
                          description: Vinted domain for this market.
                        currency:
                          type: string
                          description: ISO 4217 currency code.
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````