PHP code example of dant89 / zoopla-api-php-client
1. Go to this page and download the library: Download dant89/zoopla-api-php-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/ */
dant89 / zoopla-api-php-client example snippets
use Dant89\ZooplaApiClient\Client;
// Create base client
$zooplaClient = new Client(ZOOPLA_API_KEY);
// Select application client
$propertyClient = $zooplaClient->getHttpClient('property');
$properties = $propertyClient->getPropertyListings();
json
""dant89/zoopla-api-php-client": REPLACE_WITH_VERSION
}