> ## 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 the supported Leboncoin markets with their domain, currency, and locale.

Leboncoin is a single-country marketplace (France). This endpoint returns the market metadata programmatically for completeness and parity with other ScrapeBadger scrapers.

## Response

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

  <Expandable title="MarketInfo object">
    <ResponseField name="code" type="string">Market code (e.g. `FR`).</ResponseField>
    <ResponseField name="domain" type="string">Leboncoin domain (e.g. `leboncoin.fr`).</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. `fr-FR`).</ResponseField>
    <ResponseField name="name" type="string">Marketplace country name.</ResponseField>
  </Expandable>
</ResponseField>

### Example Response

```json theme={null}
{
  "markets": [
    { "code": "FR", "domain": "leboncoin.fr", "country": "FR", "currency": "EUR", "locale": "fr-FR", "name": "France" }
  ]
}
```

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