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.
You also have to declare which resources will be listed in your Open Data product via the Product Settings button.
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}}"
Updated over 7 years ago