An unoffical, fully typed TS/JS client library for the Seacloud API.
npm install seacloud-client
import { SeacloudClient } from 'seacloud-api-client';
// Create a new client
const client = new SeacloudClient();
// Authenticate with the Seacloud API using your username and password
client.authenticate('username', 'password');
// Get all locations
const locations = await client.getLocations();
See the Seacloud API documentation for more information on the API endpoints and response types. Only a subset of the API is currently supported:
- Authenticate
- Locations
- Sensors
Contributions are welcome!