zoopla-js is a node wrapper for Zoopla's public API. It is written in TypeScript.
npm
npm install zoopla-js
yarn
yarn add zoopla-js
import Zoopla from 'zoopla-js';
const zoopla = new Zoopla();
async function getSomeListings() {
const r = await zoopla.propertyListings({area: 'England'});
console.log(r.listing);
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.