Skip to main content
GET
/
v1
/
realtor
/
markets
List Markets
curl --request GET \
  --url https://scrapebadger.com/v1/realtor/markets \
  --header 'x-api-key: <api-key>'
{
  "markets": [
    {
      "code": "<string>",
      "domain": "<string>",
      "country": "<string>",
      "currency": "<string>",
      "locale": "<string>",
      "name": "<string>"
    }
  ]
}

Response

markets
array
Array of supported markets.

Example Response

{
  "markets": [
    { "code": "us", "domain": "realtor.com", "country": "US", "currency": "USD", "locale": "en-US", "name": "United States" },
    { "code": "ca", "domain": "realtor.ca", "country": "CA", "currency": "CAD", "locale": "en-CA", "name": "Canada" }
  ]
}
Listing markets is a free reference endpoint (0 credits).

Authorizations

x-api-key
string
header
required

Response

200 - application/json

Supported markets

markets
object[]