Discover/realestateview API
live

realestateview APIrealestateview.com.au

Access Australian rental listings, agent profiles, suburb trends, and location data from view.com.au via 7 structured endpoints.

Endpoint health
verified 4d ago
get_nearby_listings
get_property_types
search_rental_listings
get_rental_listing_detail
search_locations
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the realestateview API?

The view.com.au API exposes 7 endpoints covering rental property listings, agent profiles, and location discovery across Australia. search_rental_listings returns paginated results with 25 listings per page, filterable by state, suburb, postcode, bedrooms, and property type. get_rental_listing_detail goes deeper, returning fields like suburbTrends, featureList, nearby schools, and zoning data for a specific property.

Try it
Page number for pagination.
Australian state code in lowercase.
Suburb name. Spaces are converted to hyphens internally (e.g. 'richmond', 'hoppers crossing').
Number of bedrooms filter. Provide as a number string (e.g. '2') or slug (e.g. '2-bedrooms').
Australian postcode (e.g. '3121', '2000'). Leading zeros preserved.
Property type slug used in URL path.
api.parse.bot/scraper/3748ab7b-6679-4ef0-81af-8c5c885033c3/<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/3748ab7b-6679-4ef0-81af-8c5c885033c3/search_rental_listings?page=1&state=vic&suburb=richmond&bedrooms=2&postcode=3121&property_type=house' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace realestateview-com-au-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: View.com.au Real Estate API — search rentals, drill into listings, explore agents."""
from parse_apis.view_com_au_real_estate_api import (
    View, AustralianState, PropertyType_, ResourceNotFound,
)

client = View()

# Search for 2-bedroom houses for rent in VIC
for listing in client.searchresults.search(
    state=AustralianState.VIC,
    property_type=PropertyType_.HOUSE,
    bedrooms="2",
    limit=3,
):
    print(listing.suburb_name, listing.price_text, listing.bedrooms, "bed")

# Take one listing and get its images
listing = client.searchresults.search(
    state=AustralianState.VIC, limit=1
).first()
if listing:
    media = listing.images()
    print(f"Listing {listing.id}: {len(media.images)} images, hero={media.hero_image}")

    # Get similar listings nearby
    for similar in listing.similar(limit=3):
        print(f"  Similar: {similar.price_text} in {similar.suburb_name}")

    # Get the first agent's full profile
    if listing.agents:
        agent_summary = listing.agents[0]
        try:
            profile = agent_summary.profile()
            print(f"Agent: {profile.first_name} {profile.last_name}, "
                  f"rentals: {profile.number_of_rent_listings}")
        except ResourceNotFound:
            print("Agent profile no longer available")

# Search locations to discover suburbs
for loc in client.locations.search(query="Richmond", limit=5):
    print(loc.display_text, loc.state, loc.postcode)

# List all supported property types
for pt in client.propertytypes.list(limit=10):
    print(pt.id, pt.name)

print("exercised: searchresults.search / listing.images / listing.similar / "
      "agent.profile / locations.search / propertytypes.list")
All endpoints · 7 totalmissing one? ·

Search for rental listings on view.com.au with optional filters for location, property type, and bedrooms. Returns paginated results with 25 listings per page. Without filters returns all VIC rentals. Combine state + suburb + postcode for locality-specific results.

Input
ParamTypeDescription
pageintegerPage number for pagination.
statestringAustralian state code in lowercase.
suburbstringSuburb name. Spaces are converted to hyphens internally (e.g. 'richmond', 'hoppers crossing').
bedroomsstringNumber of bedrooms filter. Provide as a number string (e.g. '2') or slug (e.g. '2-bedrooms').
postcodestringAustralian postcode (e.g. '3121', '2000'). Leading zeros preserved.
property_typestringProperty type slug used in URL path.
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching listings across all pages",
    "listings": "array of listing objects with property details, agent info, images, and links",
    "page_size": "integer number of listings per page (typically 25)",
    "current_page": "integer current page number"
  },
  "sample": {
    "data": {
      "total": 12679,
      "listings": [
        {
          "id": 17967638,
          "state": "VIC",
          "agency": {
            "id": 4748,
            "name": "Ray White Sunbury"
          },
          "agents": [
            {
              "id": 104198,
              "mobile": "0411 918 077",
              "lastName": "Dawson",
              "firstName": "Nowelle",
              "agentProfileLink": "/agent-profile/nowelle-dawson-104198/"
            }
          ],
          "status": "On Market",
          "bedrooms": 3,
          "carparks": 4,
          "postcode": "3427",
          "bathrooms": 1,
          "priceText": "$515 per week",
          "streetName": "Screen Road",
          "suburbName": "DIGGERS REST",
          "rentPerWeek": 515,
          "propertyTypes": [
            "House"
          ],
          "listingDetailLink": "/property/vic/diggers-rest-3427/5-screen-road-17967638/"
        }
      ],
      "page_size": 25,
      "current_page": 1
    },
    "status": "success"
  }
}

About the realestateview API

Rental Listing Search and Detail

search_rental_listings accepts optional filters including state, suburb, postcode, bedrooms, and property_type. Without filters it returns all Victorian rentals. Combine all three locality parameters — state, suburb, and postcode — for the most specific results. The response includes total (matching listings across all pages), page_size (always 25), and a listings array with property details, agent info, images, and direct links. Use get_property_types to retrieve the five valid property_type slugs before constructing a filtered search.

Listing Detail and Media

get_rental_listing_detail returns a full property record: priceText, bedrooms, bathrooms, description, featureList, a nested agency object, an agents array with contact details, and a suburbTrends object containing demographic and market trend data for the surrounding suburb. If a listing URL is no longer active, the endpoint returns a stale_input signal rather than an error. get_listing_images fetches the same listing's media separately, returning an images array with url, sequence, and caption, a hero_image URL, and a floor_plans array.

Agent Profiles and Similar Listings

get_agent_listings accepts a relative agent profile URL and returns structured contact data — email, mobile, firstName, lastName — alongside performance fields: averageSoldPrice, numberOfRentListings, and numberOfSoldListings. Agent URLs are obtainable from listing results. get_nearby_listings takes the same listing URL format and returns a similar_listings array, each entry carrying id, priceText, bedrooms, bathrooms, images, agents, and listingDetailLink.

Location Discovery

search_locations accepts a free-text query — suburb name, postcode, or LGA — and returns a data array of location objects. Each object includes suburbName, postcode, state, locationType, lgaName, and displayText. This endpoint is the recommended starting point for building valid locality parameter combinations for search_rental_listings.

Reliability & maintenanceVerified

The realestateview API is a managed, monitored endpoint for realestateview.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when realestateview.com.au 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 realestateview.com.au 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
4d ago
Latest check
7/7 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
  • Build a rental property search interface filtered by suburb, postcode, and bedroom count using search_rental_listings.
  • Display full property detail pages including floor plans and suburb trend data with get_rental_listing_detail.
  • Aggregate agent contact details and performance statistics from get_agent_listings for a real estate CRM.
  • Populate a location autocomplete widget using the suburbName, postcode, and state fields from search_locations.
  • Render a 'similar properties' carousel on a listing page using the similar_listings array from get_nearby_listings.
  • Build a property image gallery component using the images, hero_image, and floor_plans returned by get_listing_images.
  • Monitor rental inventory changes across Victorian suburbs by polling search_rental_listings with specific postcode and property type filters.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does view.com.au have an official developer API?+
view.com.au does not publish a public developer API or documented data access programme. This Parse API provides structured access to its listing, agent, and location data.
What does `get_rental_listing_detail` return beyond basic listing fields?+
Beyond bedrooms, bathrooms, and priceText, the endpoint returns a suburbTrends object with demographic and market trend data, a featureList array, a full description string, nearby school data, and zoning information. The agency and agents fields carry structured contact details.
Does the API cover properties for sale, not just rentals?+
Not currently. All seven endpoints are scoped to rental listings, agents associated with rentals, and related location data. You can fork this API on Parse and revise it to add endpoints targeting for-sale listings.
Are listings available for all Australian states, or only Victoria?+
search_rental_listings defaults to all VIC rentals when no filters are applied, but the state parameter accepts any lowercase Australian state code. Coverage breadth for non-VIC states depends on the inventory listed on view.com.au at query time.
What happens when a listing URL passed to `get_rental_listing_detail` is no longer active?+
The endpoint returns a stale_input signal rather than throwing an error. The same behaviour applies to get_agent_listings and get_nearby_listings when the referenced resource no longer exists.
Page content last updated . Spec covers 7 endpoints from realestateview.com.au.
Related APIs in Real EstateSee all →
realestate.com.au API
Search and retrieve property listing data from realestate.com.au, including listings for sale and rent, detailed property information, and nearby schools for any location across Australia.
realcommercial.com.au API
Search commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.
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.
domain.com.au API
Search and compare property listings for sale, rent, or sold properties across Australia, view detailed property information and agent profiles, and explore suburb insights to make informed real estate decisions. Access comprehensive data on agents, neighborhoods, and properties all in one place.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
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.
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.
rentals.ca API
Search and browse rental listings across Canada by city or neighbourhood, and view detailed property information including prices, amenities, and availability. Find your next home by filtering thousands of rental properties on Rentals.ca in real-time.