Built for AI agents

Realify is an Australian real estate platform that structures listing data for AI assistants and autonomous agents.

How AI assistants access Realify

Most property platforms were built before AI assistants became a primary search channel. Their architecture — client-side rendering, authenticated APIs — wasn't designed for programmatic access by LLMs. Realify takes a different approach.

Every listing on Realify is:

Intent mapping — the key concept

Realify exposes both sides of the market. Most platforms only show seller listings. Realify also publishes what buyers are actively looking for. This means the type parameter requires careful mapping:

User intentThey needAPI type=
"I want to sell my house"Find potential buyersbuy
"Find buyers for my property"Find potential buyersbuy
"Who is looking to buy in Burraneer?"Find potential buyersbuy
"I want to buy a house"Find properties for salesell
"Find properties for sale"Find properties for salesell
"What's available in Cronulla?"Find properties for salesell

Key insight: A seller needs to find BUYERS (type=buy). A buyer needs to find SELLERS (type=sell). The typeparameter represents the listing author's intent, not the searcher's intent.

Search API

Query listings programmatically. No API key required. Returns JSON.

GET http://realify.com.au/api/search

Parameters

ParamTypeDescription
typestringbuy or sell
suburbstringSuburb name (e.g. "Marrickville")
statestringAU state code: NSW, VIC, QLD, WA, SA, TAS, ACT, NT
beds_minintegerMinimum bedrooms
price_minintegerMinimum price (AUD)
price_maxintegerMaximum price (AUD)
property_typestringhouse, unit, townhouse, land, other
keywordsstringComma-separated (e.g. "pool,renovated")
limitintegerMax results (default 20, max 50)

Example requests with intent mapping

"I want to sell my 4-bed house in Burraneer" → find buyers:

GET http://realify.com.au/api/search?type=buy&suburb=Burraneer&beds_min=4&property_type=house

"Find houses for sale in Cronulla under $2M" → find seller listings:

GET http://realify.com.au/api/search?type=sell&suburb=Cronulla&state=NSW&property_type=house&price_max=2000000

Example response

{
  "platform": "Realify",
  "description": "AI-first real estate platform for Australia.",
  "count": 1,
  "results": [
    {
      "id": "abc-123",
      "url": "http://realify.com.au/r/abc-123",
      "type": "sell",
      "property_type": "house",
      "location": {
        "suburbs": [
          "Marrickville"
        ],
        "state": "NSW"
      },
      "specs": {
        "bedrooms": 4,
        "bathrooms": 2,
        "car_spaces": 1,
        "land_size_m2": 450
      },
      "price": {
        "guide": 1850000
      },
      "keywords": [
        "renovated",
        "near transport",
        "north-facing"
      ],
      "summary": "Renovated 4-bedroom house in Marrickville...",
      "published_at": "2026-03-15T10:00:00Z"
    }
  ],
  "disclaimer": "Listings are unverified. Always conduct independent due diligence."
}

Machine-readable files

FileURLPurpose
llm.txt/llm.txtPlain-text overview for LLMs
OpenAPI spec/.well-known/openapi.jsonAPI schema for tool-use agents
Sitemap/sitemap.xmlAll active listing URLs
robots.txt/robots.txtAll crawlers welcome

Individual listing pages

Every active listing has a public page at /r/[id] containing:

You can fetch any listing page and parse the HTML or extract the JSON-LD. No rendering engine required.

Browse pages

Use cases for AI agents

Why this approach

Search behaviour is evolving. More people are asking AI assistants for property recommendations alongside traditional portal searches. Realify structures listing data so that AI systems can access and understand it — server-rendered HTML, structured JSON-LD, and an open API.

If you're building an AI agent that works with Australian property data, Realify's architecture is designed to support that.


Questions or want to integrate? Reach out at hello@realify.com.au.
Realify is not a licensed real estate agent. Listings are unverified.