alkurn / yii2-zillow
Zillow PHP API Wrapper
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:yii2-extension
Requires
This package is not auto-updated.
Last update: 2025-03-07 06:33:51 UTC
README
This is a simple PHP Wrapper for the Zillow API services.
Requirements
depends on PHP 5.4+, Goutte 2.0+, Guzzle 4+.
Installation
Add alkurn/yii2-zillow as a require dependency in your composer.json
file:
composer require alkurn/yii2-zillow:dev-master
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']);
Any Zillow API call will work. Valid 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.