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
curl "https://api.sfranalytics.com/properties/by-address?address=123+Main+St,+Los+Angeles,+CA+90001" \
  -H "X-API-TOKEN: your-api-key"
JavaScript/Node.js
const address = encodeURIComponent('123 Main St, Los Angeles, CA 90001');
const response = await fetch(
  `https://api.sfranalytics.com/properties/by-address?address=${address}`,
  { headers: { 'X-API-TOKEN': 'your-api-key' } }
);

const property = await response.json();
console.log(property);
Python
import requests

response = requests.get(
    'https://api.sfranalytics.com/properties/by-address',
    headers={'X-API-TOKEN': 'your-api-key'},
    params={'address': '123 Main St, Los Angeles, CA 90001'}
)

property_data = response.json()
print(property_data)

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.

Prompt for Claude Code / Cursor
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:
- GET /properties/by-address?address=... - Get property details by address
- GET /buyers/activity?search_type=msa&msa=... - Get buyer activity
- GET /buyers/best-buyers?address=... - Find best buyers for a property
- GET /geo-analytics/flips/hold-time?search_type=zip&zip=... - Flip hold time stats
- GET /rental-analytics/market-analysis?geography_type=city&geography_values=... - 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