realtor16
3.4
Realtor16 MCP Server provides comprehensive real estate data access.
Realtor16 is a robust server that provides access to real-time data from US real estate properties and agents. It offers a wide array of tools to search and retrieve property listings, agent details, and market statistics, making it an essential resource for anyone involved in the real estate industry.
Features
- Property Listings: Access a vast database of properties for sale, rent, or sold. Filter properties by location, type, price, and other criteria.
- Agent Information: Find detailed profiles of real estate agents, including their listings, reviews, and recommendations.
- Market Insights: Retrieve detailed housing market statistics, including median prices, market trends, and environmental risks.
Usage with Different Platforms
python
python
import requests
url = 'https://api.realtor16.com/properties'
params = {
'location': 'New York',
'type': 'sale',
'price_min': 500000,
'price_max': 1000000
}
response = requests.get(url, params=params)
print(response.json())
javascript
javascript
const axios = require('axios');
axios.get('https://api.realtor16.com/properties', {
params: {
location: 'New York',
type: 'sale',
price_min: 500000,
price_max: 1000000
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error fetching data:', error);
});