Skip to main content
List the covered Immobiliare Group markets. All four portals share one platform, so every endpoint behaves identically across them — pass the market’s code as the market parameter on any other endpoint.

Response

A JSON array of Market objects:
code
string
Market code — pass as market, e.g. it.
domain
string
Portal domain, e.g. www.immobiliare.it.
country_code
string
ISO country code, e.g. IT.
locale
string
Portal locale, e.g. it, es, el, fr.
currency
string
Always EUR.
name
string
Human-readable market name.

Example

const res = await fetch("https://api.scrapebadger.com/v1/immobiliare/markets", {
  headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY },
});
const markets = await res.json();
Response
[
  {
    "code": "it",
    "domain": "www.immobiliare.it",
    "country_code": "IT",
    "locale": "it",
    "currency": "EUR",
    "name": "Italy (Immobiliare.it)"
  },
  {
    "code": "es",
    "domain": "www.indomio.es",
    "country_code": "ES",
    "locale": "es",
    "currency": "EUR",
    "name": "Spain (Indomio.es)"
  },
  {
    "code": "gr",
    "domain": "www.indomio.gr",
    "country_code": "GR",
    "locale": "el",
    "currency": "EUR",
    "name": "Greece (Indomio.gr)"
  },
  {
    "code": "lu",
    "domain": "www.immotop.lu",
    "country_code": "LU",
    "locale": "fr",
    "currency": "EUR",
    "name": "Luxembourg (Immotop.lu)"
  }
]
Listing markets is a free reference endpoint (0 credits).