API
Rate Limits (Hard limits)
When executing requests to TagoIO, you will have a limit on the number of requests that can be made during a certain time period. These limits are applied in short intervals every minute, allowing us to provide a reliable and scalable API that our ...
Account Token
The secret key used between Tago and external applications are Account Tokens. Any access from an account will only be granted with a valid token, so it is vital that this token be kept secret and only be shared with those you trust. All sorts of ...
RESTful API
We provide a powerful set of Restful API documentation that's used by Analysis behind the scenes to perform all sorts of requests to TagoIO, such as but not limited to: Creating, deleting and editing devices Creating, deleting and editing ...
Usage Policy
When executing API requests to TagoIO by posting (data input) or to getting (data output) data, your account may face a limit policy based on the limits defined by you in the My Billing settings. The limits are based on the number of transactions ...
Managing Devices
Using the account-token, you can manage your devices through API requests. It’s possible to create, edit, delete, and get info of it. Create Create a device through POST method. POST - https://api.tago.io/device Request { "name": "My first device", ...
Getting Data
HEADERS: Authorization: Your-Device-Token GET - https://api.tago.io/data QUERYSTRINGS: KEY TYPE DESCRIPTION variable string || array Get variables query string pre-defined by Tago qty string Maximum number of data to be returned. start_date string ...
Deleting Data
DEL - https://api.tago.io/data Headers: Authorization: Your device token. Optional Query Strings KEY TYPE DESCRIPTION query string pre-defined by Tago qty string Maximum number of data to be returned start_date string Start date end_date string end ...
Sending Data
A device can send data to TagoIO by using the POST method. POST https://api.tago.io/data KEY TYPE REQUIRED variable string [max 100 characters] yes unit string [max 25 characters] no value string/number/boolean [max 6kB] no time string no group ...
API Overview
It is easy to connect devices, data sources, or third-party APPs to your account using TagoIO Application Programming Interface (API). We have a comprehensive set of APIs that gives you full control to manage your accounts, data, devices, dashboards, ...