Tools / Real Estate Data
Real Estate Data icon

Real Estate Data

Listings, valuations & market data

Property listings, sold prices, valuations, market trends, rental analysis, and area research across the US, UK, Australia, and UAE. Auto-detects the market from any address, postcode, or zip code.

7 skillsv0.01
Search Listings

Find properties currently for sale or rent across the US, Australia, and UAE. Filter by price, bedrooms, property type, and radius. The tool server CAN fetch listings from any supported market — always pass the full location with country or state.

Returns: Array of property listings with address, price, bedrooms, bathrooms, property type, area, listing URL, days on market, and key features. Includes market_note on coverage.
Parameters
location *stringAddress, city, postcode, or ZIP code to search. Include country or state for accurate market detection.
listing_typestringType of listing
price_minnumberMinimum price in local currency
price_maxnumberMaximum price in local currency
bedrooms_minnumberMinimum number of bedrooms
property_typestringProperty type filter
radius_milesnumberSearch radius in miles (default 5)
limitnumberMax results to return (default 10, max 25)
contextstringFree-text notes about the client or search context
Example
US house search
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "search_listings",
  "input": {
    "location": "Austin, TX 78701",
    "bedrooms_min": 3,
    "price_max": 500000
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Property Valuation

Get estimated value of a specific property plus comparable recent sales nearby. Covers the US, UK, and Australia. Returns a price range estimate, comparables with prices and dates, and value per sqft.

Returns: Estimated value (low/mid/high range), 3-5 comparable sales with prices and dates, value per sqft/sqm, confidence level, and data source.
Parameters
address *stringFull street address with postcode or ZIP code
contextstringAdditional property details — bedrooms, condition, renovations etc.
Example
US property valuation
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "property_valuation",
  "input": {
    "address": "42 Oak Street, Austin, TX 78701"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Sold History

Recent sold prices in an area — what properties actually went for. Covers the US, UK, Australia, and UAE. Returns individual transactions with prices, dates, and property details plus summary statistics.

Returns: Array of sold properties with address, price, date, type, bedrooms, area. Plus summary stats: median, average, range, total transactions.
Parameters
location *stringPostcode, ZIP code, suburb, or area name
monthsnumberLookback period in months (default 12, max 60)
property_typestringFilter by property type
limitnumberMax results (default 20, max 50)
contextstringContext about what the agent is looking for
Example
London sold prices
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "sold_history",
  "input": {
    "location": "SW1A 1AA",
    "months": 24
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Market Trends

Price trends, supply/demand indicators, and market conditions for an area over time. Returns median and average prices, price changes over the selected period, inventory levels, and days on market.

Returns: Current median/avg price, price change over period, inventory levels, days on market, supply vs demand, price per sqft/sqm trend, and market summary.
Parameters
location *stringCity, postcode, ZIP code, or area name
periodstringLookback period
property_typestringFilter by property type
contextstringContext about the analysis
Example
3-year Manchester trends
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "market_trends",
  "input": {
    "location": "Manchester, UK",
    "period": "3y"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Rental Analysis

Rental estimates, yields, and rental market data for a property or area. Returns estimated monthly rent, gross yield percentage, rental demand indicators, and comparable rental listings nearby.

Returns: Estimated monthly rent (low/mid/high), gross yield %, rental demand indicator, avg days to let, rental price trend, and comparable rentals.
Parameters
location *stringAddress, postcode, ZIP code, or area name
property_typestringProperty type
bedroomsnumberNumber of bedrooms
contextstringInvestment context — buy-to-let, short-term rental, etc.
Example
NYC rental analysis
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "rental_analysis",
  "input": {
    "location": "Brooklyn, NY 11201",
    "property_type": "apartment",
    "bedrooms": 2
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Area Research

What is it like to live here? Returns crime statistics, nearby schools, transport stations, shops, parks, demographics, household income, and planning applications for any location.

Returns: Population, demographics, household income, schools with ratings, crime data, transport links, planning applications, and amenities.
Parameters
location *stringCity, suburb, postcode, or area name
contextstringWhat matters — schools, transport, safety, etc.
Example
UK area research
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "area_research",
  "input": {
    "location": "Shoreditch, London E1 6AN",
    "context": "Young family, need good primary schools"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Property History

Look up the full sale history for a specific property address. Returns every recorded sale with price, date, property type, and tenure. Shows price changes over time across multiple transactions.

Returns: Full sale history: every recorded transaction with price, date, property type, and tenure. Plus summary with price changes over time.
Parameters
address *stringFull property address — e.g. "12 Brushfield Street, London E1 6AT". Include house number and street for best results.
limitnumberMax results (default 10, max 30)
Example
UK property history (free)
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "real-estate",
  "skill": "property_history",
  "input": {
    "address": "12 Brushfield Street, London E1 6AT"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.012026-03-23
  • Initial release — US, UK, Australia, UAE markets
  • Added property_history skill — free UK address lookup via Land Registry

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"real-estate","skill":"search_listings","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Frequently Asked Questions

Can I search for listings by address or market?

`search_listings` finds homes for sale or rent across the US, UK, Australia, and UAE, and it works best when you pass the full location with country or state.

Can it estimate a home value from an address?

Yes. `property_valuation` covers the US, UK, and Australia and returns an estimated range plus recent comparable sales.

Can I see sold prices and market trends?

`sold_history` shows recent transactions in an area, and `market_trends` adds median prices, inventory, price change, and days on market over time.

Can it help with rent and neighborhood research?

Yes. `rental_analysis` estimates monthly rent and yield, while `area_research` adds schools, transport, crime, demographics, and planning applications.