The OJP Javascript SDK is a Javascript/Typescript package used for communication with OJP APIs.
SDK documentation: https://opentdatach.github.io/ojp-js
latest changes: CHANGELOG
npm ojp-sdk package: https://www.npmjs.com/package/ojp-sdk
OJP Demo App: https://opentdatach.github.io/ojp-demo-app/ - web application using this SDK
get an API key from opentransportdata.swiss API manager
include ojp-sdk, ojp-shared-types packages in the ./package.json dependencies of the project
"dependencies": {
"ojp-shared-types": "0.1.6",
"ojp-sdk": "0.22.3",
}
import * as OJP from 'ojp-sdk-next';
// ...
// declare the stage config, PROD example below
const httpConfig: OJP.HTTPConfig = {
url: 'https://api.opentransportdata.swiss/ojp20',
authToken: 'TOKEN_FROM_opentransportdata.swiss',
};
// define a requestorRef that describes the client
const requestorRef = 'MyExampleTransportApp.v1';
// create the SDK
const language = 'de'; // de, fr, it, en
const ojpSDK = OJP.SDK.create(requestorRef, httpConfig, language);
Find locations by name, stop reference or inside a bounding box rectangle.
// case1 - build LIR by Name
const searchTerm = 'Bern';
const request = LocationInformationRequest.initWithLocationName('Bern');
// build LIR by StopRef
const stopRef = '8507000'; // Bern
const request2 = LocationInformationRequest.initWithPlaceRef(stopRef);
// build LIR by BBOX
// these are equivalent
let bbox: string | number[] = '7.433259,46.937798,7.475252,46.954805';
bbox = [7.433259, 46.937798, 7.475252, 46.954805];
const request3 = ojpSDK.request.initWithBBOX(bbox, ['stop']);
// change XML payload if needed
request.payload.initialInput ...
// Fetch the results
async myMethod() {
// ...
const response = await request.fetchResponse(ojpSDK);
if (!response.ok) {
// handle error
console.log(response.error);
return;
}
// do something with the value
const placeResults = response.value.placeResult ?? [];
placeResults.forEach(placeResult => {
console.log(placeResult.place.name);
});
}
Find trips between A-B endpoints defined by stop references and / or coordinates
// a) from/to StopPlaceRefs
const fromStopRef = '8507000'; // Bern
const toStopRef = '8503000'; // Zürich
const request = OJP.TripRequest.initWithPlaceRefsOrCoords(fromStopRef, toStopRef);
// b) from/to coord pairs (latitude, longitude)
const fromCoordsRef = '46.957522,7.431170';
const toCoordsRef = '46.931849,7.485132';
const request2 = OJP.TripRequest.initWithPlaceRefsOrCoords(fromCoordsRef, toCoordsRef);
// change XML payload if needed
request.payload.params ...
// or use one of modifier method
// return precise route for legs, disabled by default
request.enableLinkProkection();
// set monomodal car requests
request.setCarRequest();
// Fetch the results
async myMethod() {
// ...
const response = await request.fetchResponse(ojpSDK);
if (!response.ok) {
// handle error
console.log(response.error);
return;
}
// do something with the value
const tripResults = response.value.tripResult ?? [];
tripResults.forEach(tripResult => {
// handle tripResult response
});
}
Display arrival / departure service information for stop references.
const stopRef = '8507000'; // Bern
const request = OJP.StopEventRequest.initWithPlaceRefAndDate(stopRef, new Date());
// change XML payload if needed
request.payload.params ...
// Fetch the results
async myMethod() {
// ...
const response = await request.fetchResponse(ojpSDK);
if (!response.ok) {
// handle error
console.log(response.error);
return;
}
// do something with the value
const stopEventResults = response.value.stopEventResult ?? [];
stopEventResults.forEach(stopEventResult => {
// handle stopEventResult response
});
}
Display full service information (stop calls, service data)
const journeyRef = 'ch:1:sjyid:100001:2179-001'; // from a DatedJourneyService in a TR TimedLeg
const request = OJP.StopEventRequest.initWithJourneyRef(journeyRef);
// change XML payload if needed
request.payload.params ...
// Fetch the results
async myMethod() {
// ...
const response = await request.fetchResponse(ojpSDK);
if (!response.ok) {
// handle error
console.log(response.error);
return;
}
// do something with the tripInfoResult
const tripInfoResult = response.value.tripInfoResult;
}
The project is released under a MIT license.
Copyright (c) 2021 - 2026 Open Data Platform Mobility Switzerland - opentransportdata.swiss.