PHPackages                             yajra/zillow - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. yajra/zillow

ActiveApplication[API Development](/categories/api)

yajra/zillow
============

Laravel Wrapper for Zillow API

v2.0.5(8y ago)154067[1 issues](https://github.com/yajra/zillow/issues)[1 PRs](https://github.com/yajra/zillow/pulls)MITPHPPHP &gt;=5.4.0

Since Oct 10Pushed 6y ago1 watchersCompare

[ Source](https://github.com/yajra/zillow)[ Packagist](https://packagist.org/packages/yajra/zillow)[ Docs](https://github.com/yajra/zillow)[ RSS](/packages/yajra-zillow/feed)WikiDiscussions 3.0 Synced today

READMEChangelogDependencies (3)Versions (13)Used By (0)

Zillow, Laravel Wrapper
=======================

[](#zillow-laravel-wrapper)

A simple Laravel Wrapper for the Zillow API services.

[![Build Status](https://camo.githubusercontent.com/cdee48bf3297e7a2ebc93cf2de9f83eec9a54a5b2522cd2f0d2975d7e4219c9a/68747470733a2f2f7472617669732d63692e6f72672f79616a72612f7a696c6c6f772e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/yajra/zillow)[![Total Downloads](https://camo.githubusercontent.com/30626b09d9dc6baa647a54789f6c82ea32994b8a825322c8155963c99135f4dd/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f7a696c6c6f772f646f776e6c6f6164732e706e67)](https://packagist.org/packages/yajra/zillow)[![Latest Stable Version](https://camo.githubusercontent.com/eb1519b9a70bcefe76a01d75f61a5f71885abb1ab00761ced834f72c3460d8ea/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f7a696c6c6f772f762f737461626c652e706e67)](https://packagist.org/packages/yajra/zillow)[![Latest Unstable Version](https://camo.githubusercontent.com/06f13f6bdbfd40f49170beb3fc3a443997ce68d52249ede90f57ba2c0e118d6e/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f7a696c6c6f772f762f756e737461626c652e737667)](https://packagist.org/packages/yajra/zillow)[![License](https://camo.githubusercontent.com/f24f0da31f3b751455b2f5629c1dfffdd13aed745d8dd390416d6a06c2c5f37b/68747470733a2f2f706f7365722e707567782e6f72672f79616a72612f7a696c6c6f772f6c6963656e73652e737667)](https://packagist.org/packages/yajra/zillow)

Requirements
------------

[](#requirements)

depends on PHP 5.4+, Goutte 2.0+, Guzzle 4+.

Installation
------------

[](#installation)

Add `yajra/zillow` as a require dependency in your `composer.json` file:

**Laravel 4**

```
composer require yajra/zillow:~1.0
```

**Laravel 5**

```
composer require yajra/zillow:~2.0
```

Configuration
-------------

[](#configuration)

In your `config/app.php` add `yajra\Zillow\ServiceProvider` to the end of the providers array

```
'providers' => array(
    'Illuminate\Auth\AuthServiceProvider',
    ...
    'yajra\Zillow\ServiceProvider',
),
```

At the end of `config/app.php` add `Zillow` =&gt; `yajra\Zillow\Facade` to the aliases array

```
'aliases' => array(
    'App'        => 'Illuminate\Support\Facades\App',
    'Artisan'    => 'Illuminate\Support\Facades\Artisan',
    ...
    'Zillow'    => 'yajra\Zillow\Facade',
),
```

Lastly, publish the config file:

**Laravel 4**

```
$ php artisan config:publish yajra/zillow
```

**Laravel 5**

```
$ php artisan vendor:publish
```

Then set your [Zillow Web Services ID (ZWSID)](http://www.zillow.com/webservice/Registration.htm) by updating the `zws-id` value in

**Laravel 4**`app/config/packages/yajra/zillow/config.php`

**Laravel 5**`config/zillow.php`

\###Usage
---------

[](#usage)

Make requests with a specific API call method:

```
$params = [
	'address' => '5400 Tujunga Ave',
	'citystatezip' => 'North Hollywood, CA 91601'
];
// Run GetSearchResults
$response = Zillow::getSearchResults($params);
```

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
-------

[](#license)

MIT license.

Links
-----

[](#links)

This package was inspired by [Zillow, PHP Wrapper](https://github.com/VinceG/zillow)

###  Health Score

33

—

LowBetter than 72% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~101 days

Recently: every ~175 days

Total

12

Last Release

3170d ago

Major Versions

v1.0.2 → v2.0.02015-06-24

v2.0.5 → 3.0.x-dev2017-10-28

### Community

Maintainers

![](https://www.gravatar.com/avatar/8c245d1effe6022f9f09b2e8b9cce26743de03a64d612cea4ce9885560d7c0b2?d=identicon)[yajra](/maintainers/yajra)

---

Top Contributors

[![yajra](https://avatars.githubusercontent.com/u/2687997?v=4)](https://github.com/yajra "yajra (22 commits)")[![ChaosPower](https://avatars.githubusercontent.com/u/260845?v=4)](https://github.com/ChaosPower "ChaosPower (1 commits)")[![jidagob](https://avatars.githubusercontent.com/u/88225209?v=4)](https://github.com/jidagob "jidagob (1 commits)")

---

Tags

laravellaravel-wrapperphpzillowphpapilaravelzillow

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/yajra-zillow/health.svg)

```
[![Health](https://phpackages.com/badges/yajra-zillow/health.svg)](https://phpackages.com/packages/yajra-zillow)
```

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k9.5M89](/packages/openai-php-laravel)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

74331.3k1](/packages/mozex-anthropic-laravel)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.6M13](/packages/checkout-checkout-sdk-php)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
