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
| Plan | Requests / Hour | Max Results |
|---|---|---|
| Starter | 100 | 50 |
| Professional | 1,000 | 100 |
| Enterprise | 10,000 | 100 |
Endpoints
GET
/api/v1/propertiesList properties with filtering
Parameters
| Name | Type | Description |
|---|---|---|
| state | string | Filter by state code (e.g. NC) |
| city | string | Filter by city name |
| minPrice | number | Minimum price |
| maxPrice | number | Maximum price |
| type | string | Property type (Foreclosure, REO, etc.) |
| status | string | Property status |
| limit | number | Results per page (max 100, default 50) |
| offset | number | Pagination offset |
Response
{
"properties": [...],
"total": 142,
"limit": 50,
"offset": 0
}GET
/api/v1/properties?id={id}Get a single property with photos and documents
Parameters
| Name | Type | Description |
|---|---|---|
| id * | string | Property ID |
Response
{
"property": {
"id": "...",
"title": "...",
"price": 142000,
"arv": 220000,
"beds": 3,
"baths": 2,
...
}
}