These docs are for v2.0. Click to read the latest docs for v3.3.

Open Data

Our Platform allows you to tag a product as Open Data. When doing this, this product becomes part of thethings.iO's Open Data repository and can be accessed by anybody or anything with read only access rights.

If you want your things to be Open Data you can tag a product as Open Data when creating it.

588

You also have to declare which resources will be listed in your Open Data product via the Product Settings button.

1187

Use Cases

  • Allow the community to access your data
  • Show a chart of your things on a public webpage
  • Play with the data from the others
  • Whatever you are thinking... ;)

Opendata API Basics

List all Open Data products

curl -H "Content-Type: application/json" \
  -X GET "https://api.thethings.io/v2/opendata/products/"

List the things

This call gets the things from one product including the thing description if they have one. You have to set the url with a valid productId.

curl -H "Content-Type: application/json" \
  -X GET "https://api.thethings.io/v2/opendata/products/{{productId}}/things"

Get one thing data

You have to set the productId, resourceId and thingId.

curl -H "Content-Type: application/json" \
  -X GET "https://api.thethings.io/v2/opendata/products/{{productId}}/resources/{{resourceId}}/things/{{thingId}}"