PHP code example of brentmullen / zillow-api

1. Go to this page and download the library: Download brentmullen/zillow-api 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/ */

    

brentmullen / zillow-api example snippets


use ZillowApi\ZillowApiClient;

$client = new ZillowApiClient('zws-id');

// Run GetSearchResults
$response = $client->execute(
    'GetSearchResults', 
    [
        'address' => '1600 Pennsylvania Ave NW', 
        'citystatezip' => 'Washington DC 20006'
    ]
);
sh
php composer.phar