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.
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.
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/callGet 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.
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/callRecent 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.
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/callPrice 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.
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/callRental 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.
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/callWhat is it like to live here? Returns crime statistics, nearby schools, transport stations, shops, parks, demographics, household income, and planning applications for any location.
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/callLook 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.
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/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"real-estate","skill":"search_listings","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently 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.