Note that we don't currently support the full API.
Please refer to the Zoopla API documentation.
npm install zoopla --save
const Zoopla = require('zoopla');
const zoopla = new Zoopla({ apiKey: 'YOUR_API_KEY' });
zoopla
.getPropertyListings({ area: 'london' })
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error('error', error);
});