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

Status Codes

When working with the ei API, one of these will be the HTTP status code depending on how you sent your request.

200 Ok indicates that your request was well processed and data was found. The other status codes indicate that there was an issue with your request, or no data was found, or there is an issue with the ei API.

HTTP Status Codes

200
Ok
All the parameters of your request were properly sent and we were able to retrieve the requested data.
401
Unauthorized
Invalid or no API key supplied. Please see how to authenticate your request.
404
Not found
The resource does not exist. We could not get the data for the request.
422
Unprocessable Content
Your request failed some validation tests. This occur when you pass a wrong value or ommit a required parameter.
429
Too Many Requests
You have exceeded the number of requests that you are eligible to make within a given period. You may need to subscribe to a plan.
500
Server Error
An error occurred on our server. You should never expect this. If you encounter this, please contact us.
Example Response
200 Ok
{
  "success": true,
  "message": "Last 5 year growth rate for land in Victoria Island",
  "data": {
    "growth": 37.53,
    "period": "2019-2023"
  }
}