Node.js SDK

Node.js SDK

You can access our SDK documentation on:


If you are looking for documentation for old version (9.x.x) you access it on: 

https://tago-sdk-js-documentation.rtfd.io/
The old SDK will be discontinued at 2030.

When executing requests to TagoIO, you will have a limit on the number of requests that can be made during a certain time period. Read more about our Rate Limits.


    • Related Articles

    • Running Analysis as External using Node.JS

      Analysis is what allows you to create powerful applications on TagoIO. When creating analysis you have to choose between running it at TagoIO or External, which means that you will run on your machine. You can choose to run the analysis on an ...
    • Analysis Overview

      Analysis lets you run custom code inside TagoIO to process data in real time, call third‑party APIs, and work with your own TagoIO resources. Common things people do with Analyses: Convert units and run math on variables Write new values into other ...
    • Python SDK

      You can access our SDK documentation on: https://py.sdk.tago.io/ Installation pip install tagoio-sdk Quick Start from tagoio_sdk import Account account = Account({"token": "your-token"}) devices = account.devices.list() Remote Imports in Analysis ...
    • Creating Keypad Widgets

      This article will demonstrate how to create a Keypad Widget using the TagoIO Node.js SDK. In order for you to create keypad widgets, this is the structure that you will need to send to the account.dashboards.widgets.create method. {   "analysis_run": ...
    • Creating Analysis

      Creating your own analysis is easy. First, click on Analysis on the sidebar, then click the + Add Analysis button in the upper right of the analysis main screen. Just write a name and you’re ready to go! 1. Name What you usually use to identify your ...