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

Land Prices

The Land Prices endpoint helps you get the current average land price per sqm of a location.

The location slug and the country code should be provided in the request.

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).
GET/land-prices
cURL
curl -X GET 'https://api.estateintel.com/land-prices' -H 'API-KEY: YOUR_SECRET_KEY' -H 'Content-Type: application/json' -H 'ACCEPT: application/json' -d '{"location":"victoria-island","country_code":"NG"}'
Example Response
{
  "success": true,
  "message": "Land price for victoria-island,NG found",
  "data": {
    "price_per_sqm": 1419026.58,
    "location": "victoria-island",
    "country_code": "NG",
    "currency": "NGN"
  }
}