InvestorEdge API v1

RESTful API for property data access

Access our property database programmatically. Built for institutional buyers, portfolio managers, and developers who need bulk property data.

Base URL: https://investoredge.com/api/v1
JSON responses

Authentication

All API requests require an API key sent via the X-API-Key header.

curl -H "X-API-Key: YOUR_API_KEY" \
  https://investoredge.com/api/v1/properties

Generate your API key from Settings > API Access in your dashboard.

Rate Limits

PlanRequests / HourMax Results
Starter10050
Professional1,000100
Enterprise10,000100

Endpoints

GET/api/v1/properties

List properties with filtering

Parameters

NameTypeDescription
state stringFilter by state code (e.g. NC)
city stringFilter by city name
minPrice numberMinimum price
maxPrice numberMaximum price
type stringProperty type (Foreclosure, REO, etc.)
status stringProperty status
limit numberResults per page (max 100, default 50)
offset numberPagination offset

Response

{
  "properties": [...],
  "total": 142,
  "limit": 50,
  "offset": 0
}
GET/api/v1/properties?id={id}

Get a single property with photos and documents

Parameters

NameTypeDescription
id *stringProperty ID

Response

{
  "property": {
    "id": "...",
    "title": "...",
    "price": 142000,
    "arv": 220000,
    "beds": 3,
    "baths": 2,
    ...
  }
}