This package has been deprecated

Author message:

Please wait until the release, API keys not yet available

@nederlandse-spoorwegen/travel-information-api

1.0.1 • Public • Published

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) => {
                
    })

Package Sidebar

Install

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

Weekly Downloads

7

Version

1.0.1

License

MIT

Unpacked Size

238 kB

Total Files

23

Last publish

Collaborators

  • max.meijer