Realtor.ca Scraper API

FREEMIUM
От ScrapeMind | Обновлено 2 months ago | Data
Популярность

8.1 / 10

Задержка

1,334ms

Уровень обслуживания

100%

Health Check

N/A

ПРОЧТИ МЕНЯ

Realtor.ca Scraper API

Overview

This is an API for scraping data from Realtor.ca. It provides endpoints for parsing Realtor.ca URLs, searching for properties, and getting property details.

Base URL

  • Base URL: https://realtor-ca-scraper-api.p.rapidapi.com/

Endpoints

1. Parse Realtor.ca URL

  • URL: /parseUrl

  • Method: POST

  • Description: Parse a Realtor.ca search URL to extract search query and filters.

  • Request Body:

    {
      "url": "https://www.realtor.ca/map#ZoomLevel=11&Center=43.708087%2C-79.376385&LatitudeMax=43.95254&LongitudeMax=-78.96783&LatitudeMin=43.46263&LongitudeMin=-79.78494&Sort=6-D&PGeoIds=g30_dpz89rm7&GeoName=Toronto%2C%20ON&PropertyTypeGroupID=1&TransactionTypeId=3&PropertySearchTypeId=0&Currency=CAD"
    }
    
    
  • Response:

 {
        "searchQuery": {
        "ZoomLevel": "11",
        "Center": "43.708087,-79.376385",
        "LatitudeMax": "43.95254",
        "LongitudeMax": "-78.96783",
        "LatitudeMin": "43.46263",
        "LongitudeMin": "-79.78494",
        "Sort": "6-D",
        "PGeoIds": "g30_dpz89rm7",
        "GeoName": "Toronto, ON",
        "PropertyTypeGroupID": "1",
        "TransactionTypeId": "3",
        "PropertySearchTypeId": "0",
        "Currency": "CAD"
      }
}

2. Search Properties

  • URL: /properties/search
  • Method: POST
  • Description: Search for properties based on the provided query and filters.
  • Request Body:
{
  "searchQuery": {
    "ZoomLevel": "11",
    "Center": "43.708087,-79.376385",
    "LatitudeMax": "43.95254",
    "LongitudeMax": "-78.96783",
    "LatitudeMin": "43.46263",
    "LongitudeMin": "-79.78494",
    "Sort": "6-D",
    "PGeoIds": "g30_dpz89rm7",
    "GeoName": "Toronto, ON",
    "PropertyTypeGroupID": "1",
    "TransactionTypeId": "3",
    "PropertySearchTypeId": "0",
    "Currency": "CAD"
  }
}
  • Response:

    [
      {
        "MslNumber": "N7201358",
        "Address": "#508 -15 WATER WALK DR|Markham, Ontario L6G0G2",
        "LeaseRent": "$2,600/Monthly",
        "ListedTime": "4 hours ago"
      },
      // More property listings...
    ]

3. Get Property Details

  • URL: /properties/details
  • Method: POST
  • Description: Get details of a property by providing its MLS number.
  • Request Body:

{
  "MlsNumber": "C7201356"
}
  • Response:

    {
      "query": {
        "ReferenceNumber": "C7201356",
        "ApplicationId": "1",
        "CultureId": "1"
      },
      "Result": [
        {
          "Id": "26151025",
          "MlsNumber": "C7201356",
          "PublicRemarks": "Desirable Aura Condo At Great Location. ...",
          // Property details...
        }
      ]
    }
Подписчики: 1
Создатель API:
Rapid account: Scrape Mind
ScrapeMind
baqo271
Войдите, чтобы оценить API
Оценки: 5 - Голосов: 1