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

Authentication
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"}'
JavaScript/Node.js
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);
Python
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)

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:
- 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