InsidersByte / zoopla

Zoopla API for Node.js
MIT License
1 stars 1 forks source link

Zoopla API for Node.js

npm
Build Status Coverage Status Code Climate
Dependency Status devDependency Status

NPM

Note that we don't currently support the full API.

Documentation

Please refer to the Zoopla API documentation.

Installing

npm install zoopla --save

Basic Usage

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);
  });

Methods Supported