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

Growth Rates

The Growth Rates endpoint helps you get a sector's average 5 year growth rate 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).
sector
string
The property sector. Please see list of supported property sectors here.
type
string
The transaction type (rent or sale). Required when sector is residential.
beds
string
The bed type. Please see list of supported beds here. Required when sector is residential.
GET/growth
cURL
curl -X GET 'https://api.estateintel.com/growth' -H 'API-KEY: YOUR_SECRET_KEY' -H 'Content-Type: application/json' -H 'ACCEPT: application/json' -d '{"location":"victoria-island","country_code":"NG","sector":"residential","type":"rent","beds":"3"}'
Example Response
{
  "success": true,
  "message": "Last 5 year growth rate for residential 3 beds rent in Victoria Island",
  "data": {
    "growth": 10.23,
    "period": "2019-2023"
  }
}