dfreer / zillow by dfreer

Laravel 5 Zillow api wrapper. This code is a fork from vinceg/zillow
21,045
2
0
Package Data
Maintainer Username: dfreer
Maintainer Contact: derek.freer@kalidy.com (Derek Freer)
Package Create Date: 2016-05-16
Package Last Update: 2016-05-17
Language: PHP
License: MIT
Last Refreshed: 2024-04-25 15:00:29
Package Statistics
Total Downloads: 21,045
Monthly Downloads: 151
Daily Downloads: 9
Total Stars: 2
Total Watchers: 0
Total Forks: 3
Total Open Issues: 1

Zillow, Laravel 5 Wrapper

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.