Discover/Flatmates API
live

Flatmates APIflatmates.com.au

Retrieve structured seeker profiles, move dates, budgets, and property listings from Flatmates.com.au via 4 REST endpoints. Paginate active seekers and properties.

Endpoint health
verified 4d ago
discover_seekers
get_seeker_details
get_moving_leads
discover_properties
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Flatmates API?

The Flatmates.com.au API exposes 4 endpoints that return structured data from Australia's largest flatmate-finding platform, covering seeker profiles, property listings, and moving leads. The get_seeker_details endpoint returns a complete profile including weekly budget, preferred suburbs, intended stay length, and a is_potential_customer qualification flag — useful for targeting near-term movers without manual browsing.

Try it
The unique ID of the person, prefixed with F (e.g. F4746278). If the F prefix is omitted it is added automatically.
api.parse.bot/scraper/51849592-0bb5-4823-91fd-7216a82c43c4/<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/51849592-0bb5-4823-91fd-7216a82c43c4/get_seeker_details?seeker_id=F4765165' \
  -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 flatmates-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.

from parse_apis.flatmates_com_au_data_api import Flatmates, Seeker, Property, SeekerNotFound

client = Flatmates()

# Discover active seeker IDs from the sitemap
for seeker_id in client.seekers.discover(offset=0, limit=5):
    print(seeker_id)

# Fetch a specific seeker's full profile
seeker = client.seekers.get(seeker_id="F4765165")
print(seeker.name, seeker.budget, seeker.move_date, seeker.is_potential_customer)
print(seeker.preferred_locations)
print(seeker.preferred_accommodation_types)

# Discover property listings
for prop in client.properties.discover(offset=0, limit=3):
    print(prop.id, prop.url, prop.title)

# Get qualified moving leads (seekers with upcoming move dates)
for lead in client.seekers.list_moving_leads(limit=5):
    print(lead.name, lead.move_date, lead.budget, lead.potential_customer_reasons)
All endpoints · 4 totalmissing one? ·

Retrieve a seeker's full profile including move date, budget, preferred locations, accommodation preferences, and a potential-customer qualification flag. The seeker ID (F-prefixed) is required; if the prefix is omitted it is added automatically.

Input
ParamTypeDescription
seeker_idrequiredstringThe unique ID of the person, prefixed with F (e.g. F4746278). If the F prefix is omitted it is added automatically.
Response
{
  "type": "object",
  "fields": {
    "id": "string — seeker ID with F prefix",
    "url": "string — full profile URL",
    "name": "string — display name",
    "budget": "string — weekly budget with dollar sign (e.g. $250)",
    "about_me": "string — free-text description from the seeker",
    "move_date": "string — when the seeker wants to move (e.g. Now, or YYYYMMDD)",
    "stay_length": "string — intended stay duration (e.g. 3 months stay)",
    "preferred_locations": "array of strings — suburb and postcode (e.g. Melbourne, 3000)",
    "is_potential_customer": "boolean — whether the seeker qualifies as a moving lead",
    "potential_customer_reasons": "array of strings — reasons for qualification",
    "preferred_accommodation_types": "array of strings — accommodation type labels"
  },
  "sample": {
    "data": {
      "id": "F4765165",
      "url": "https://flatmates.com.au/F4765165",
      "name": "Ursula",
      "budget": "$200",
      "about_me": "Just arrived in Australia, my dream is to travel the World",
      "move_date": "Now",
      "stay_length": "1 month stay",
      "preferred_locations": [
        "Melbourne, 3000"
      ],
      "is_potential_customer": true,
      "potential_customer_reasons": [
        "Move date: Now"
      ],
      "preferred_accommodation_types": [
        "Room(s) in an existing share house",
        "Studio flats for rent",
        "Whole properties for sharing",
        "Teamup"
      ]
    },
    "status": "success"
  }
}

About the Flatmates API

Seeker Profile Data

The get_seeker_details endpoint accepts a seeker ID with or without the F prefix (e.g. F4746278 or 4746278) and returns a full profile object. Key fields include budget (formatted as a dollar-weekly string like $250), move_date (either Now or a YYYYMMDD string), stay_length, preferred_locations (an array of suburb/postcode pairs), and about_me free text. Two qualification fields — is_potential_customer (boolean) and potential_customer_reasons (array of strings) — flag whether the seeker is a near-term moving lead.

Moving Leads Discovery

The get_moving_leads endpoint surfaces seeker profiles with upcoming move dates. Pass an integer limit to control how many qualified leads come back. The response includes a count integer and a leads array where each element matches the full get_seeker_details schema, so the same downstream processing code applies to both endpoints.

Paginated Discovery of Seekers and Properties

discover_seekers returns a paginated slice of active seeker IDs sourced from the site's index, with limit and offset parameters for cursor-free pagination. The response contains a seeker_ids string array (all F-prefixed) and a total_count reflecting the full active pool. discover_properties works identically but returns property objects with id, url, and title fields alongside a total_count. Use either endpoint to build bulk pipelines that feed into get_seeker_details for enrichment.

Reliability & maintenanceVerified

The Flatmates API is a managed, monitored endpoint for flatmates.com.au — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when flatmates.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 flatmates.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
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
  • Build a moving-leads pipeline by calling get_moving_leads and filtering on is_potential_customer for near-term renters
  • Map rental demand by aggregating preferred_locations fields across seeker profiles discovered via discover_seekers
  • Monitor weekly budget distributions in a target suburb by combining discover_seekers with batch get_seeker_details calls
  • Power a property management dashboard by paginating discover_properties and tracking active listing counts over time
  • Qualify relocation leads for furniture or utilities services using move_date and stay_length fields from seeker profiles
  • Enrich a CRM with structured seeker data by piping seeker IDs from discover_seekers into get_seeker_details
  • Identify short-stay demand by filtering stay_length values across bulk seeker profile pulls
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 Flatmates.com.au have an official developer API?+
Flatmates.com.au does not publish a public developer API or documented data access programme. This Parse API provides structured access to the data available on the public site.
What does the is_potential_customer flag in get_seeker_details actually indicate?+
The boolean is_potential_customer indicates whether a seeker qualifies as a near-term moving lead based on their move_date and other profile signals. The accompanying potential_customer_reasons array of strings explains which criteria were met, letting you apply your own downstream filtering without re-evaluating the raw fields.
Does the API return full property listing details such as rent price, number of rooms, or landlord contact?+
Not currently. The discover_properties endpoint returns a property's id, url, and title — it is a discovery layer rather than a full listing detail endpoint. Seeker-side detail (budget, location, move date) is available via get_seeker_details. You can fork this API on Parse and revise it to add a property detail endpoint that returns rent, room count, and amenities.
How does pagination work across discover_seekers and discover_properties?+
Both endpoints accept integer limit and offset parameters. offset is a positional index into the full active list, not a page token. total_count in the response tells you the full pool size so you can calculate how many pages to iterate. There is no cursor-based or keyset pagination.
Are seeker profiles from outside major Australian cities included?+
The API returns profiles from whatever is active on the Flatmates.com.au platform, which is Australia-wide. However, preferred_locations is returned as-provided by each seeker, so coverage of rural or regional listings reflects what seekers themselves list — the API does not filter or normalise by metro area.
Page content last updated . Spec covers 4 endpoints from flatmates.com.au.
Related APIs in Real EstateSee all →
spareroom.co.uk API
Browse SpareRoom UK flatshare listings by city with prices, locations, images, and listing links, and fetch a curated list of top flatsharing cities.
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.
realestateview.com.au API
Search and explore rental property listings across Australia with detailed information including photos, property types, agent details, and nearby listings. Find available rentals by location, compare properties, and discover similar listings in your area of interest.
serviceseeking.com.au API
Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.
seek.com.au API
Search for job listings on SEEK Australia and retrieve detailed information about positions. Browse jobs across any keyword, title, and location, and access full job descriptions, classifications, salary info, and employment details.
spotahome.com API
Search rental properties on Spotahome and retrieve detailed listing information including pricing, availability, amenities, pet policy, and landlord profiles. Filter by city, budget, dates, and more to explore mid- to long-term rental options across Spotahome's global inventory.
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.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.