For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Nukio API
    • Authentication
    • Device
    • User
    • Geozone
    • Fleets
    • Notifications
    • Routes
    • Passengers
    • Account Status
    • Nukio SDK
LogoLogo
On this page
  • Nukio SDK
  • JavaScript / TypeScript SDK
  • Installation
  • Quick Start
  • Available API Groups
  • Example: Get Geozones
  • Example: Get Device
  • npm Package
Nukio API

Overview

||View as Markdown|
Was this page helpful?
Edit this page
Previous

getMonitorMetadata

Built with

Nukio SDK

Documentation for installing and using the official Nukio SDK from npm. This section provides setup instructions, authentication examples, available API groups, and sample SDK calls for developers integrating Nukio into Node.js or TypeScript applications.

JavaScript / TypeScript SDK

The Nukio SDK provides a simple way to integrate with the Nukio API from Node.js applications.

Installation

Bash
Yarn
pnpm
Bun
PowerShell
$npm install nukio-sdk

Quick Start

JavaScript
Python
Java
cURL
Shell
1const { NukioClient } = require("nukio-sdk");
2async function main() {
3 const api = new NukioClient();
4 await api.login({
5 accountID: "yourAccount",
6 userID: "yourUser",
7 password: "yourPassword"
8 });
9 const devices = await api.api.device.getAllDevices();
10 console.log(devices);
11}
12main().catch(console.error);

Available API Groups

JavaScript
Python
Java
cURL
Shell
1api.api.authentication
2api.api.device
3api.api.user
4api.api.geozone
5api.api.fleets
6api.api.notifications
7api.api.routes
8api.api.passengers
9api.api.accountStatus

Example: Get Geozones

JavaScript
Python
Java
cURL
Shell
1const geozones = await api.api.geozone.getGeozones();

Example: Get Device

JavaScript
Python
Java
cURL
Shell
1const device = await api.api.device.getDevice("01");

npm Package

Package name:

JavaScript
Python
Java
cURL
Shell
1nukio-sdk

Latest version:

JavaScript
Python
Java
cURL
Shell
1npm view nukio-sdk version