Socket
Socket
Sign inDemoInstall

kiwi-api

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    kiwi-api

A Node.js wrapper for the Kiwi(Skypicker) API


Version published
Maintainers
1
Install size
5.17 kB
Created

Readme

Source

Kiwi(Skypicker) API

Kiwi.com API for Node.js.

Installation

npm install kiwi-api --save

API Documentation

Skypicker.com API on Apiary.com

How to use

import KiwiAPI from 'kiwi-api';
const KiwiClient = new KiwiAPI();

// Get places
KiwiClient.places()
  .then(places => console.log(places))
  .catch(error => console.log(error));

// Get flights
KiwiClient.flights()
  .then(flights => console.log(flights))
  .catch(error => console.log(error));

Keywords

FAQs

Last updated on 10 Sep 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc