Discover/Rentals API
live

Rentals APIrentals.ca

Search and retrieve Canadian rental listings from Rentals.ca. Filter by city, bedrooms, bathrooms, and price. Returns floor plans, amenities, images, and contact details.

This API takes change requests — .
Endpoint health
verified 11h ago
get_listing_details
get_listings_by_city
search_listings_full
search_listings
4/4 passing latest checkself-healing
Endpoints
4
Updated
14d ago

What is the Rentals API?

The Rentals.ca API exposes 4 endpoints for searching and retrieving rental property listings across Canadian cities. The search_listings endpoint accepts city slugs like toronto or vancouver alongside filters for bedrooms, bathrooms, and price range, returning paginated summaries with rent ranges, bed/bath counts, and GPS coordinates. A separate get_listing_details endpoint delivers full property records including floor plans, amenities, building specs, and contact information.

This call costs2 credits / call— charged only on success
Try it
City slug for the search area (e.g., 'toronto', 'montreal', 'vancouver', 'calgary', 'ottawa').
Page number for pagination.
Number of results per page.
Filter by number of bedrooms.
Filter by minimum number of bathrooms.
Maximum rent price filter.
Minimum rent price filter.
api.parse.bot/scraper/049153a1-4159-4897-8351-c96ef08f1c37/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/049153a1-4159-4897-8351-c96ef08f1c37/search_listings?city=toronto&page=1&limit=5&bedrooms=2&bathrooms=1&max_price=5000&min_price=1000' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalmissing one? ·

Search for rental listings in a specific Canadian city with optional filters for bedrooms, bathrooms, and price range. Returns paginated results with listing summaries including rent range, bed/bath counts, and location coordinates. The city parameter accepts slugs like 'toronto', 'montreal', 'vancouver'. Pagination advances via the page parameter; total_count in the response gives the full result set size.

Input
ParamTypeDescription
citystringCity slug for the search area (e.g., 'toronto', 'montreal', 'vancouver', 'calgary', 'ottawa').
pageintegerPage number for pagination.
limitintegerNumber of results per page.
bedroomsintegerFilter by number of bedrooms.
bathroomsnumberFilter by minimum number of bathrooms.
max_pricenumberMaximum rent price filter.
min_pricenumberMinimum rent price filter.
Response
{
  "type": "object",
  "fields": {
    "city": "string, the city slug used for the search",
    "page": "integer, current page number",
    "limit": "integer, number of results per page",
    "listings": "array of listing summary objects with id, title, path, url, rent_range, beds_range, baths_range, location, verified, and property_type",
    "total_count": "integer, total number of matching listings",
    "total_floor_plans": "integer, total number of floor plans across all matching listings"
  },
  "sample": {
    "data": {
      "city": "toronto",
      "page": 1,
      "limit": 5,
      "listings": [
        {
          "id": "cmVudGFsbGlzdGluZzoyNTcxNjk=",
          "url": "https://rentals.ca/york/the-heathview",
          "path": "york/the-heathview",
          "title": "The Heathview",
          "location": [
            -79.414559,
            43.685894
          ],
          "verified": true,
          "beds_range": [
            1,
            2
          ],
          "rent_range": [
            2495,
            5895
          ],
          "baths_range": [
            1,
            2.5
          ],
          "property_type": "apartment"
        }
      ],
      "total_count": 8588,
      "total_floor_plans": 12334
    },
    "status": "success"
  }
}

About the Rentals API

Searching Rental Listings

search_listings and get_listings_by_city both return paginated arrays of listing summaries. Each summary includes id, title, url, rent_range, beds_range, baths_range, location coordinates, and a verified flag. search_listings accepts min_price, max_price, bedrooms, and bathrooms filters in addition to city and pagination params; get_listings_by_city takes only city, page, and limit, making it better suited for broad city-level browsing. Both responses include total_count and total_floor_plans for accurate pagination.

Full Listing Details

get_listing_details takes a base64-encoded listing_id sourced from any summary response and returns the complete property record: structured address (street, postal code, city, neighbourhood), contact object (name, phone, email), building metadata (total units, stories, year built), parking options, an images array, and a [longitude, latitude] location pair. Property type and URL path are also included.

Bulk Search with Full Detail

search_listings_full combines the filter set of search_listings with the expanded data shape of get_listing_details for every result in a single response. It adds a created_after ISO 8601 datetime parameter, allowing incremental ingestion of listings updated after a specific timestamp. Response objects include description, published_at, updated_at, property_type, and the full address structure — useful for pipelines that need to avoid calling get_listing_details per listing.

Coverage and Identifiers

All four endpoints operate on Canadian cities via slug strings (toronto, montreal, vancouver, calgary, ottawa). Listing IDs are base64-encoded strings throughout; the id field returned by search endpoints feeds directly into get_listing_details without decoding. Floor plan counts (total_floor_plans) reflect individual unit configurations within multi-unit buildings, which can exceed total_count significantly for apartment complexes.

Reliability & maintenanceVerified

The Rentals API is a managed, monitored endpoint for rentals.ca — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rentals.ca changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official rentals.ca API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
11h ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Aggregate rent prices by city and bedroom count to track Canadian rental market trends over time
  • Build a rental alert system using search_listings_full with created_after to detect newly posted listings
  • Map available rentals in a neighbourhood using location coordinates from search_listings
  • Populate a property comparison tool with floor plan counts, building stories, and year built from get_listing_details
  • Qualify leads for property management software by pulling contact name, phone, and email from listing detail responses
  • Feed a rental affordability dashboard by filtering min_price and max_price across multiple Canadian cities
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Rentals.ca offer an official developer API?+
Rentals.ca does not publish a documented public developer API. This Parse API provides structured programmatic access to listing data on the site.
What does `get_listing_details` return that the search endpoints don't?+
get_listing_details returns fields not present in search summaries: address (with street, postal code, and neighbourhood), contact (name, phone number, email), building (total units, stories, year built), parking details, and an images array of property photo URLs. Search endpoints return only rent_range, beds_range, baths_range, location, and verified.
Does the API cover rental listings outside Canada?+
No. All endpoints operate on Canadian cities identified by slug. Rentals.ca itself is a Canadian platform, so international listings are not available. You can fork this API on Parse and revise it to point at a different source if you need listings in other countries.
Can I retrieve individual room or sublet listings?+
Not currently. The API surfaces listings at the property and floor-plan level — full units with bed/bath counts and rent ranges. Room-share or sublet sub-listings are not exposed as separate records. You can fork this API on Parse and revise it to add an endpoint targeting that listing category.
How does pagination work across the search endpoints?+
All three search/browse endpoints (search_listings, get_listings_by_city, search_listings_full) accept page and limit parameters and return total_count in every response. Divide total_count by your chosen limit to determine the total number of pages. Note that total_floor_plans will often differ from total_count because a single building listing can contain multiple floor plans.
Page content last updated . Spec covers 4 endpoints from rentals.ca.
Related APIs in Real EstateSee all →
rew.ca API
Search rental and for-sale properties across Canada, get detailed listing information, explore neighbourhoods, and find real estate agents in your area. Access property details, agent profiles, and neighbourhood data all in one place.
realtor.ca API
Search Canadian real estate listings and retrieve detailed property information including photos, prices, descriptions, and agent details from REALTOR.ca. Browse available properties with comprehensive listing data across Canada.
centris.ca API
Search and retrieve real estate listings from Centris.ca, Canada's largest real estate platform. Filter by location, property type, price range, and keywords to find houses, condos, plexes, and multi-generational properties across Quebec. Get detailed listing information including price, address, room counts, and photos.
condos.ca API
Search and browse comprehensive condo listings across Canada while accessing detailed building information, neighbourhood statistics, and mortgage calculators to make informed real estate decisions. Get instant market data, compare properties, and estimate mortgage payments all from one integrated platform.
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.
kijiji.ca API
Search and browse Kijiji listings across categories like rentals, pets, and jobs, while viewing detailed information about specific ads along with available locations and categories. Filter through thousands of Canadian classifieds to find exactly what you're looking for in your area.
zoocasa.com API
Search Canadian real estate listings on Zoocasa and retrieve detailed property information including active listings, sold homes, and rental properties. Access comprehensive listing details and discover comparable properties by location, property type, and listing status.
padmapper.com API
Search and browse rental listings across cities with detailed property information including prices, contact details, and market trends. Discover apartments and homes through city-wide searches or map-based exploration, and access comprehensive listing details to help you find your next rental.