dfreer/zillow

Laravel 5 Zillow api wrapper. This code is a fork from vinceg/zillow

dev-master 2016-05-17 14:23 UTC

This package is not auto-updated.

Last update: 2024-05-06 05:12:44 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.