Discover/RateTheLandlord API
live

RateTheLandlord APIratethelandlord.org

Access 10,000+ landlord reviews, aggregate ratings, category breakdowns, and tenant resources from RateTheLandlord.org via a structured REST API.

Endpoint health
verified 4d ago
get_filter_options
get_reviews
get_tenant_resources
get_landlord
get_landlords
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the RateTheLandlord API?

This API exposes 5 endpoints covering landlord reviews, aggregate ratings, and tenant resources from RateTheLandlord.org. The get_landlord endpoint returns per-landlord category averages across five dimensions — repair, health, stability, respect, and privacy — plus every individual review for that landlord. The get_landlords endpoint lists 10,000+ tracked landlord names, which you can use to look up exact names before querying.

Try it

No input parameters required.

api.parse.bot/scraper/a88c3afd-3473-48bc-8aaf-7967741edea2/<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/a88c3afd-3473-48bc-8aaf-7967741edea2/get_reviews' \
  -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 ratethelandlord-org-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.ratethelandlord_api import RateTheLandlord, Review, Landlord, Filter, Resource, LandlordNotFound

rtl = RateTheLandlord()

# Get recent reviews
for review in rtl.reviews.recent():
    print(review.landlord, review.city, review.state, review.repair)

# Look up a specific landlord
landlord = rtl.landlords.get(name="GREENWIN")
print(landlord.name, landlord.average, landlord.total)
print(landlord.catAverages.avg_repair, landlord.catAverages.avg_health)

for rev in landlord.reviews:
    print(rev.id, rev.city, rev.date_added, rev.review)

# List all landlord names in the database
for name in rtl.landlords.list_names():
    print(name)

# Get filter options for geographic coverage
filters = rtl.filters.get()
print(filters.countries)
for city in filters.cities:
    print(city.id, city.name, city.value)

# List tenant resources
for resource in rtl.resources.list():
    print(resource.name, resource.country_code, resource.href, resource.description)
All endpoints · 5 totalmissing one? ·

Fetches the 25 most recent landlord reviews from the database, sorted newest first. Each review includes the landlord name, location (city, state, zip, country), review text, five rating categories (repair, health, stability, privacy, respect) each scored 1-5, date added, and optional rent amount. No filtering or pagination — always returns the latest 25.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "string representing total number of reviews in database",
    "reviews": "array of review objects with id, landlord, city, state, zip, country_code, review text, rating categories, date_added, and rent"
  },
  "sample": {
    "data": {
      "total": "15143",
      "reviews": [
        {
          "id": 17809,
          "zip": "11206",
          "city": "NEW YORK",
          "rent": null,
          "state": "NEW YORK",
          "health": "4",
          "repair": "4",
          "review": "The process was professional...",
          "privacy": "4",
          "respect": "4",
          "landlord": "JUNE HOMES",
          "stability": "4",
          "date_added": "2026-06-10T16:42:00.599Z",
          "admin_edited": false,
          "country_code": "US",
          "has_user_code": true
        }
      ]
    },
    "status": "success"
  }
}

About the RateTheLandlord API

Endpoints and Data Coverage

The API provides five endpoints. get_reviews returns the 25 most recent reviews across all landlords, each with a full rating breakdown, review text, location fields (city, state, ZIP, country code), and a unique ID. get_landlords returns a flat array of all landlord name strings in uppercase — useful for discovering exact names before calling get_landlord. get_filter_options returns available filter values: city objects, ZIP objects (each with an id, name, and value), and a country code array covering regions like CA, US, and AU.

Per-Landlord Aggregates

get_landlord accepts a single required name parameter matching a landlord string from get_landlords (case-insensitive). It returns total reviews, an overall average rating on a 1–5 scale, the full reviews array, and a catAverages object with five category scores: avg_repair, avg_health, avg_stability, avg_respect, and avg_privacy. This makes it straightforward to compare how a specific landlord ranks on individual dimensions rather than just an overall score.

Tenant Resources

get_tenant_resources returns a list of tenant advocacy organizations with fields including name, description, address, phone_number, href (website URL), and geographic scope via city, state, and country_code. The response also includes summary arrays of all cities, states, and countries where resources are available, so you can scope results without iterating the full resources array.

Reliability & maintenanceVerified

The RateTheLandlord API is a managed, monitored endpoint for ratethelandlord.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ratethelandlord.org 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 ratethelandlord.org 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
5/5 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 landlord lookup tool that pulls per-landlord category averages from get_landlord to surface repair and health scores side by side.
  • Display the 25 most recent tenant reviews on a housing platform using get_reviews sorted by newest first.
  • Populate a city or ZIP filter dropdown in a rental app using the cities and zips arrays from get_filter_options.
  • Assemble a directory of tenant advocacy organizations by country or city using get_tenant_resources with its href and phone_number fields.
  • Autocomplete landlord name search in a form by matching user input against the 10,000+ name strings returned by get_landlords.
  • Track a landlord's reputation over time by periodically fetching their average and catAverages via get_landlord.
  • Identify cities with the most active review coverage by aggregating city fields across the get_filter_options response.
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 RateTheLandlord.org have an official developer API?+
RateTheLandlord.org is an open-source project (github.com/RateTheLandlord/RateTheLandlord.org) and does not publish a documented public developer API or API keys for third-party use. This Parse API provides structured access to the same data.
What does `get_landlord` return, and how specific is the rating breakdown?+
get_landlord returns the full set of reviews for a single landlord along with five category averages in the catAverages object: avg_repair, avg_health, avg_stability, avg_respect, and avg_privacy. Each individual review in the reviews array also contains its own per-category scores, so you can compute custom aggregates or filter by date using the date_added field.
Can I filter reviews by city, ZIP, or country before fetching them?+
get_reviews returns the 25 most recent reviews without filter parameters — it does not accept city, ZIP, or country inputs. get_filter_options exposes the available cities, ZIPs, and country codes in the database, but filtered review queries are not a current endpoint. You can fork this API on Parse and revise it to add a filtered review endpoint using those values.
Does the API support pagination beyond the 25 most recent reviews?+
get_reviews returns only the 25 most recent entries and has no page or offset parameter. To retrieve all reviews for a specific landlord, get_landlord returns the complete review set for that landlord with no pagination limit. Paginated browsing across all landlords is not currently covered. You can fork this API on Parse and revise it to add a paginated all-reviews endpoint.
Are landlord responses or dispute resolutions included in the review data?+
The review objects do not include landlord responses or any dispute/resolution metadata. Fields cover the tenant's review text, five rating categories, location, and date_added. Landlord-side reply data is not currently exposed. You can fork this API on Parse and revise it to add that field if the source makes it available.
Page content last updated . Spec covers 5 endpoints from ratethelandlord.org.
Related APIs in Reviews RatingsSee all →
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.
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.
apartments.com API
Search thousands of apartment listings, view detailed property information including amenities and pricing, and discover properties managed by specific companies all in one place. Find your ideal rental by filtering through available apartments and learning more about the management companies behind them.
rentregistry.cityofberkeley.info API
Search Berkeley rental properties and access detailed rent information, registration statistics, and FAQs from the City of Berkeley's official Rent Registry. Look up unit-level rental data and property details to research housing costs and landlord registration records in Berkeley.
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.
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.
trustpilot.com API
Access company reviews, ratings, and user profiles from Trustpilot to research businesses, compare ratings across categories, and analyze customer feedback and company responses. Find detailed company overviews and review summaries to make informed decisions about products and services.
inberlinwohnen.de API
Search and browse affordable apartment listings from Berlin's state-owned housing companies, view detailed property information, and access company profiles and tenant guides. Find your next home in Berlin with comprehensive data on available rentals and housing provider information in one place.