Socket
Socket
Sign inDemoInstall

@nederlandse-spoorwegen/travel-information-api

Package Overview
Dependencies
5
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nederlandse-spoorwegen/travel-information-api

A wrapper for the NS travel information API.


Version published
Maintainers
1
0

Weekly downloads

Readme

Source

NS API

The NS API package provides a high level wrapper for the NS travel information API.

Installation

    npm install @nederlandse-spoorwegen/travel-information-api

Development

Clone the repository and run the following commands:

    npm install
    npm run dev

A development server is now running allowing you to test your changes directly on your machine.

Usage

For more documentation about parameters and responses please refer to the NS developer portal

Error handling

All errors are returned directly to the user and are not handled by the wrapper.

Create api instance

Create a new api instance using your key and optional base url. By default the base url is correctly set and you do not need to specify it.

    const api = new NsApi("YourKey")

All calls return a Promise.

Departures

Get a list of departure by station code or UIC code. Note that when both a station code and uic code have been specified the station code has the higher priority.

    const departures = api.departures()
    
    const params = {
        station: "UT", // Utrecht Centraal
        uicCode: "8400058" // Amsterdam Centraal
    }
    
    departures.list(params)
        .then((result) => {
            // Handle successful response
        })
        .catch((error) => {
            // Handle error
        })

Disruptions

List of disruptions

Get a list of all disruptions.

    const disruptions = api.disruptions()
    
    const params = {
        type: "storing"
        actual: false,
        lang: "en"
    }
    
    disruptions.list(params).then((result) => {
                
    })
Disruptions by station

Get a list of disruptions by providing a station code.

    disruptions.byStation("UT").then((result) => {
                
    })
Disruptions by id

Get a specific disruptions by using an id.

    disruptions.byId("SomeId").then((result) => {
                
    })

Prices

Get information about journey fares and discounts. Dates should us the following format: 'yyyy-MM-dd'

    const prices = api.prices()
    
    const params = {
        fromStation: "ASD", // Amsterdam Centraal
        toStation: "UT", // Utrecht Centraal
        plannedFromTime: "2018-10-14",
    };
    
    prices.get(params).then((result) => {
                
    })

Stations

Information about stations.

    const stations = api.stations()
    
    stations.list().then((result) => {
                
    })

Trips

Returns travel advice information.

    const trips = api.trips();

    const params = {
        fromStation: "ASD", // Amsterdam Centraal
        toStation: "UT", // Utrecht Centraal
    };
    
    trips.get(params).then((result) => {
                
    })

Keywords

FAQs

Last updated on 13 Dec 2018

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