dfreer / zillow
Laravel 5 Zillow api wrapper. This code is a fork from vinceg/zillow
Installs: 23 084
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 0
Forks: 3
Open Issues: 1
Requires
- php: >=5.5.9
- fabpot/goutte: ^3.1
- guzzlehttp/guzzle: 5.3|~6.0
This package is not auto-updated.
Last update: 2024-12-16 08:03:19 UTC
README
This is a simple Laravel 5 Wrapper for the Zillow API services.
Installation
Add dfreer/zillow
as a require dependency in your composer.json
file:
composer require dfreer/zillow:master-dev
Usage
use Zillow\ZillowClient;
$client = new ZillowClient('ZWSID');
Make requests with a specific API call method:
// Run GetSearchResults
$response = $client->GetSearchResults(['address' => '5400 Tujunga Ave', 'citystatezip' => 'North Hollywood, CA 91601']);
Valid Zillow callbacks are:
- GetZestimate
- GetSearchResults
- GetChart
- GetComps
- GetDeepComps
- GetDeepSearchResults
- GetUpdatedPropertyDetails
- GetDemographics
- GetRegionChildren
- GetRegionChart
- GetRateSummary
- GetMonthlyPayments
- CalculateMonthlyPaymentsAdvanced
- CalculateAffordability
- CalculateRefinance
- CalculateAdjustableMortgage
- CalculateMortgageTerms
- CalculateDiscountPoints
- CalculateBiWeeklyPayment
- CalculateNoCostVsTraditional
- CalculateTaxSavings
- CalculateFixedVsAdjustableRate
- CalculateInterstOnlyVsTraditional
- CalculateHELOC
License
MIT license.