Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 743 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 743 Bytes

Seacloud API Client

An unoffical, fully typed TS/JS client library for the Seacloud API.

Installation

npm install seacloud-client

Usage

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();

Documentation

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!