Estate Intel logo
Docs Request custom features Sign in
  • Introduction
  • Authentication
  • Rate Limits
  • Status Codes
  • Supported Property Sectors
  • Supported Residential Typologies
  • Pricing
  • API Endpoints
  • Supported Locations
  • Land Prices
  • Residential Prices
  • Growth Rates
  • Docs
  • Request custom features
  • Sign in

Residential Prices

The Residential Prices endpoint helps you get the current average residential price of a location.

Please use the supported locations endpoint to fetch the locations we currently support.

Headers

API-KEY
string
YOUR_SECRET_KEY
Content-Type
string
application/json
Accept
string
application/json

Query Parameters

location
string
Slug of the location e.g victoria-island.
country_code
string
The ISO2 country code e.g NG (which represents Nigeria).
type
string
The transaction type (rent or sale).
beds
string
The bed type. Please see list of supported beds here.
GET/residential-prices
cURL
curl -X GET 'https://api.estateintel.com/residential-prices' -H 'API-KEY: YOUR_SECRET_KEY' -H 'Content-Type: application/json' -H 'ACCEPT: application/json' -d '{"location":"victoria-island","country_code":"NG","type":"sale","beds":"2"}'
Example Response
{
  "success": true,
  "message": "Residential sale price for 2 beds in victoria-island",
  "data": {
    "price": 205714286,
    "beds": "2",
    "location": "victoria-island",
    "country_code": "NG",
    "currency": "NGN"
  }
}