Get data on 150M real estate properties with our PHP SDK

Estated.com API  is the most complete and comprehensive on the market

Use our SDK to get data on over 150M real estate properties using estates.com API
Use our SDK to get data on over 150M real estate properties using estates.com API

If you are building an application that requires Real Estate data similar to what Zillow offers, look no further than Estated.com. We have used this API on several products that we built, and we found that the dataset is fairly substantial at a somewhat reasonable cost.

Estated.com charges per API call; it’s $0.25 per call, not the cheapest, but not totally through the roof (no pun intended). The documentation on Estates API could be better, but in their defense, the API is pretty simple.

We wrote a PHP SDK to help everyone start pulling and crunching real estate data in minutes!

How to use the SDK

Getting started takes a minute; get yourself an API key, install the SDK, and copy-paste the code below.
Install via composer:

composer require forward-force/estated-api-sdk

Fetch by address:

$estated = new Estated($token);

try {
    $property = $estated->property('151 Battle Green Dr', 'Rochester', 'NY', '14624');
    var_dump($property);
} catch (GuzzleException $e) {
    var_dump($e->getMessage());
}

That should do it!

Contributions are appreciated

If we missed anything or you see room for improvement, we would welcome a PR; we have a docker environment configured and ready to go for you! Whenever you are ready, please PR!