SFR Analytics API
Real Estate Investment Data at Your Fingertips
Access comprehensive property analytics, buyer intelligence, rental market data, and investment insights through our powerful REST API.
Quick Start
Make your first API call in seconds
curl -X POST "https://api.sfranalytics.com/properties/by-address" \
-H "X-API-TOKEN: your-api-key" \
-H "Content-Type: application/json" \
-d '{"address": "123 Main St, Los Angeles, CA 90001"}'
const response = await fetch('https://api.sfranalytics.com/properties/by-address', {
method: 'POST',
headers: {
'X-API-TOKEN': 'your-api-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
address: '123 Main St, Los Angeles, CA 90001'
})
});
const property = await response.json();
console.log(property);
import requests
response = requests.post(
'https://api.sfranalytics.com/properties/by-address',
headers={
'X-API-TOKEN': 'your-api-key',
'Content-Type': 'application/json'
},
json={'address': '123 Main St, Los Angeles, CA 90001'}
)
property_data = response.json()
print(property_data)
API Categories
Everything you need for real estate investment analysis
Properties
Search properties by address, get valuations, owner details, and transaction history.
View Endpoints →Buyers
Track investor activity, find top buyers by market, and analyze purchase patterns.
View Endpoints →Geo Analytics
Flip transactions, institutional ownership, market hotspots, and zip code analysis.
View Endpoints →Rental Analytics
Rental transactions, market analysis, comparables, and ownership statistics.
View Endpoints →Buyer Profiles
Detailed investor portfolios, investment patterns, and activity tracking.
View Endpoints →Locations
Search and autocomplete for geographic locations across the United States.
View Endpoints →Built for AI Integration
Copy-ready code examples for Claude, ChatGPT, and Cursor
Copy Buttons Everywhere
Every code example has a one-click copy button. Just paste into your AI assistant.
OpenAPI Specification
Download the OpenAPI spec and feed it to your LLM for complete API understanding.
Structured Examples
Request/response examples formatted for easy parsing by AI tools.
Use the SFR Analytics API to get real estate data.
API Base URL: https://api.sfranalytics.com
Authentication: X-API-TOKEN header with your API key
Key endpoints:
- POST /properties/by-address - Get property details by address
- POST /buyers/activity/page - Get paginated buyer activity
- POST /buyers/best-buyers - Find best buyers for a property
- POST /geo-analytics/flips/hold-time - Get flip hold time statistics
- POST /rental-analytics/market-analysis - Get rental market analysis
Full OpenAPI spec: https://api.sfranalytics.com/openapi.json
Ready to Get Started?
Explore our interactive API documentation with live examples
Open API Documentation