updown.io
Version:
An updown.io API client
35 lines (22 loc) • 712 B
Markdown
An [updown.io](https://updown.io) API client. For a documentation on the API see https://updown.io/api/.
Run `yarn add updown.io` or `npm install updown.io`.
A complete documentation is available at https://ffflorian.github.io/api-clients/packages/updown.io/.
```ts
import {UpdownIO} from 'updown.io';
const updownIO = new UpdownIO('my-api-key'); // API key is only required for checks
UpdownIO.api.checks.getChecks().then(checks => {
//
});
updownIO.api.nodes.getNodes().then(nodes => {
// ...
});
```
```
yarn
yarn test
```