{"id":16264722,"url":"https://github.com/yajra/zillow","last_synced_at":"2025-07-02T17:34:38.230Z","repository":{"id":21700150,"uuid":"25021545","full_name":"yajra/zillow","owner":"yajra","description":"A simple Laravel Wrapper for the Zillow API services.","archived":false,"fork":false,"pushed_at":"2020-02-05T15:05:17.000Z","size":30,"stargazers_count":15,"open_issues_count":2,"forks_count":7,"subscribers_count":2,"default_branch":"3.0","last_synced_at":"2025-04-03T06:51:11.822Z","etag":null,"topics":["laravel","laravel-wrapper","php","zillow"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yajra.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-10T05:22:05.000Z","updated_at":"2023-07-31T02:14:50.000Z","dependencies_parsed_at":"2022-07-23T15:47:22.695Z","dependency_job_id":null,"html_url":"https://github.com/yajra/zillow","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/yajra/zillow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yajra%2Fzillow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yajra%2Fzillow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yajra%2Fzillow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yajra%2Fzillow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yajra","download_url":"https://codeload.github.com/yajra/zillow/tar.gz/refs/heads/3.0","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yajra%2Fzillow/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263184954,"owners_count":23427119,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","laravel-wrapper","php","zillow"],"created_at":"2024-10-10T17:01:40.944Z","updated_at":"2025-07-02T17:34:38.208Z","avatar_url":"https://github.com/yajra.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Zillow, Laravel Wrapper\n================================\n\nA simple Laravel Wrapper for the Zillow API services.\n\n[![Build Status](https://travis-ci.org/yajra/zillow.png?branch=master)](https://travis-ci.org/yajra/zillow)\n[![Total Downloads](https://poser.pugx.org/yajra/zillow/downloads.png)](https://packagist.org/packages/yajra/zillow)\n[![Latest Stable Version](https://poser.pugx.org/yajra/zillow/v/stable.png)](https://packagist.org/packages/yajra/zillow)\n[![Latest Unstable Version](https://poser.pugx.org/yajra/zillow/v/unstable.svg)](https://packagist.org/packages/yajra/zillow)\n[![License](https://poser.pugx.org/yajra/zillow/license.svg)](https://packagist.org/packages/yajra/zillow)\n\n\nRequirements\n------------\n\ndepends on PHP 5.4+, Goutte 2.0+, Guzzle 4+.\n\nInstallation\n------------\n\nAdd `yajra/zillow` as a require dependency in your `composer.json` file:\n\n**Laravel 4**\n```php\ncomposer require yajra/zillow:~1.0\n```\n**Laravel 5**\n```php\ncomposer require yajra/zillow:~2.0\n```\n\nConfiguration\n-------------\nIn your `config/app.php` add `yajra\\Zillow\\ServiceProvider` to the end of the providers array\n```php\n'providers' =\u003e array(\n    'Illuminate\\Auth\\AuthServiceProvider',\n    ...\n    'yajra\\Zillow\\ServiceProvider',\n),\n```\n\nAt the end of `config/app.php` add `Zillow` =\u003e `yajra\\Zillow\\Facade` to the aliases array\n```php\n'aliases' =\u003e array(\n    'App'        =\u003e 'Illuminate\\Support\\Facades\\App',\n    'Artisan'    =\u003e 'Illuminate\\Support\\Facades\\Artisan',\n    ...\n    'Zillow'    =\u003e 'yajra\\Zillow\\Facade',\n),\n```\n\nLastly, publish the config file:\n\n**Laravel 4**\n```php\n$ php artisan config:publish yajra/zillow\n```\n**Laravel 5**\n```php\n$ php artisan vendor:publish\n```\n\nThen set your [Zillow Web Services ID (ZWSID)](http://www.zillow.com/webservice/Registration.htm) by updating the `zws-id` value in\n\n**Laravel 4**\n`app/config/packages/yajra/zillow/config.php`\n\n**Laravel 5**\n`config/zillow.php`\n\n###Usage\n-----\nMake requests with a specific API call method:\n\n```php\n$params = [\n\t'address' =\u003e '5400 Tujunga Ave',\n\t'citystatezip' =\u003e 'North Hollywood, CA 91601'\n];\n// Run GetSearchResults\n$response = Zillow::getSearchResults($params);\n```\n\nAny Zillow API call will work. Valid callbacks are:\n\n- getZestimate\n- getSearchResults\n- getChart\n- getComps\n- getDeepComps\n- getDeepSearchResults\n- getUpdatedPropertyDetails\n- getDemographics\n- getRegionChildren\n- getRegionChart\n- getRateSummary\n- getMonthlyPayments\n- calculateMonthlyPaymentsAdvanced\n- calculateAffordability\n- calculateRefinance\n- calculateAdjustableMortgage\n- calculateMortgageTerms\n- calculateDiscountPoints\n- calculateBiWeeklyPayment\n- calculateNoCostVsTraditional\n- calculateTaxSavings\n- calculateFixedVsAdjustableRate\n- calculateInterstOnlyVsTraditional\n- calculateHELOC\n\n\nLicense\n-------\n\nMIT license.\n\nLinks\n-----\nThis package was inspired by [Zillow, PHP Wrapper](https://github.com/VinceG/zillow)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyajra%2Fzillow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyajra%2Fzillow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyajra%2Fzillow/lists"}