Options
All
  • Public
  • Public/Protected
  • All
Menu

soss

California Hydrogen SOSS API

Build Status

This project enables a user to query the California Hydrogen Fuel Cell Partnership's Station Operational Status System (SOSS). This is the same data that appears on the California Hydrogen Fuel Cell Partnership's station map.

You can find API documentation here. Typescript definitions are included.

A quick example which prints the status of all stations in the system:

import * as soss from "soss";

async function printStatus() : void {
  let stationStatus = await soss.getStatus();
  console.log(JSON.stringify(stationStatus, null , 2));
};

printStatus();

This project is not affiliated in any way with California Hydrogen Fuel Cell Partnership.

Generated using TypeDoc