PHP code example of fw4 / realo-api-client
1. Go to this page and download the library: Download fw4/realo-api-client library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
fw4 / realo-api-client example snippets
use Realo\Api\RealoApi;
use Realo\Api\RealoApiException;
$api = RealoApi::create('YOUR_PUBLIC_KEY', 'YOUR_PRIVATE_KEY');
try {
$response = $api->request('/agencies', 'GET');
var_dump($response);
} catch (RealoApiException $e) {
printf("Error %d: %s\n", $e->getCode(), $e->getMessage());
}
bash
$ php example/simple-cli.php --public-key=xxx --private-key=xxx /valuations/xxx/data/mobility
{
"data": {
"mobilityScore": 0.88,
"distanceToCityCenter": 3130,
"distanceToBusStop": 323,
"distanceToTrainStation": 1197,
"distanceToSchool": 77,
"distanceToStores": 33,
"distanceToHighways": 3282,
"buildingDensity": 1688.01,
"inhabitantsDensity": 32346.18,
"transitTypeCityCenter": "cycling-distance",
"transitTypeBusStop": "walking-distance",
"transitTypeTrainStation": "walking-distance",
"transitTypeSchool": "walking-distance",
"transitTypeStores": "walking-distance"
}
}