Average Rent Data API
The rent data everyone else publishes monthly.
Per unit, per day.
107,318 listed units across 7,383 buildings in 973 US cities, refreshed every 24 hours. Real asking rents, concessions, availability, and week-over-week price cuts, one JSON call away.
curl -H "Authorization: Bearer ar_live_..." \ https://average-rent.com/api/v1/cities/austin-tx/stats
Endpoints
Everything is a GET with JSON out. Full parameter detail lives in the OpenAPI 3 spec.
| Endpoint | Returns |
|---|---|
| GET/api/v1/cities | Every covered city with inventory counts and current market average. |
| GET/api/v1/cities/{city}/stats | Average, min, max rent plus the per-bedroom breakdown. |
| GET/api/v1/cities/{city}/history?days=90 | Daily market-average series, outlier-trimmed. |
| GET/api/v1/cities/{city}/price-cuts | Units whose asking rent dropped in the trailing 7 days. |
| GET/api/v1/cities/{city}/properties | Paginated building directory with pricing summary. |
| GET/api/v1/properties/{id} | One building with every listed unit: rent, plan, sqft, fees, concessions. |
| GET/api/v1/properties/{id}/history?days=180 | Daily min/avg/max/median pricing for one building. |
| GET/api/v1/me | Your plan, limits, and month-to-date usage. |
Authentication
Pass your key as a bearer token or an X-API-Key header.
Keys are emailed on purchase; we store only a hash, so keep the email.
Every response carries X-RateLimit-* and
X-Quota-* headers, and
GET /api/v1/me reports month-to-date usage.
curl -H "Authorization: Bearer ar_live_..." \ "https://average-rent.com/api/v1/cities/austin-tx/price-cuts?limit=5"
Lost your key?
POST your Whop membership id to
/api/v1/keys/recover
and a fresh key is emailed to your Whop account address (the old key is rotated out).
Example response
{
"data": {
"city": "austin-tx",
"avg_rent": 1996,
"min_rent": 773,
"max_rent": 12845,
"properties": 107,
"units": 3462,
"by_bedroom": [
{ "bedrooms": 0, "label": "Studio", "units": 411, "avg_rent": 2451 },
{ "bedrooms": 1, "label": "1BR", "units": 1743, "avg_rent": 1748 },
{ "bedrooms": 2, "label": "2BR", "units": 1015, "avg_rent": 2163 }
],
"updated_at": "2026-07-03T05:12:44Z"
},
"meta": { "generated_at": "2026-07-03T12:00:01Z" }
} Pricing
Month to month, cancel anytime. Payments and subscriptions run on Whop.
Developer
$49.99/mo
Side projects, prototypes, and internal dashboards.
- 25,000 requests / month
- 60 requests / minute
- All endpoints, all 973 cities
- Daily refresh, unit-level detail
Growth
Popular$199.99/mo
Production apps and market research at city scale.
- 250,000 requests / month
- 300 requests / minute
- All endpoints, all 973 cities
- Daily refresh, unit-level detail
Scale
$499.99/mo
High-volume products and multi-market analysis.
- 1,000,000 requests / month
- 600 requests / minute
- All endpoints, all 973 cities
- Daily refresh, unit-level detail
Need bulk exports, historical backfills, or custom markets? Email us about enterprise licensing.
FAQ
Where does the data come from?
How is this different from other rent data?
How do I get an API key?
Can I show the data in my product?
Is there a free tier?
Exploring the data first? The interactive map, National Rent Report, and press & data kit are free to browse.