Install via composer as follows:
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());
}
To run locally, you can use the docker container provided here. You can run it like so:
docker-compose up
There is auto-generated documentation as to how to run this library on local, please take a look at phpdocker/README.md
If you find an issue, have a question, or a suggestion, please don't hesitate to open a github issue.
Thank you to phpdocker.io for making getting PHP environments effortless!