
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-zillow
Advanced tools
Node wrapper for the Zillow API
Install the module with: npm install node-zillow
var Zillow = require('node-zillow');
//Instantiate
var zillow = new Zillow('your zws-id', options);
var your-zws-id = process.env.ZWSID is the recommended way
https - default is false
None of this will make sense without reading the Zillow API Docs
Also be sure to follow the Zillow API terms of use and branding requirements
get
lib/api-list.js, or see belowmessage, request, and sometimes responseresponse property is NOT always included in the zillow api responseExample of all API calls through the get() method can be found in examples
var Zillow = require('node-zillow')
var zwsid = process.env.ZWSID
var zillow = new Zillow(zwsid)
var parameters = {
zpid: 1111111
};
zillow.get('GetZestimate', parameters)
.then(function(results) {
return results;
// results here is an object { message: {}, request: {}, response: {}}
})
The following API calls are deprecated and will be removed in the 1.0.0 release. Using get() is the recommended approach and should be able to do everthing that the legacy functions do. If you see problems with get(), PR's and issues are welcome.
Zillow.callApi()
Zillow.getDeepSearchResults()
Zillow.getUpdatedPropertyDetails()
Zillow.getDemographics()
This module uses promises via the Q library. Please continue to use promises. And in lieu of any further formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using npm scripts in the package.json.
Copyright (c) 2014-2018 Richard Lucas. Licensed under the MIT license.
FAQs
Node wrapper for the Zillow API
The npm package node-zillow receives a total of 906 weekly downloads. As such, node-zillow popularity was classified as not popular.
We found that node-zillow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.