1

This sounds vague, because it can have many, many possible answers (I hope), but I will accept any of them.

Basically, I want to demo a product, which has an eInk display (plus WiFi and BlueTooth), to a company in Singapore:

enter image description here

To give them an idea of how it can be used to display their data, I would like to display some Singaporean data, maybe population, or similar.

The catch is that I want it to updated every second or so, displaying the temperature wouldn't be much good as it rarely varies.

I don't care what the data is, so is it on topic to ask for some Singaporean data which changes every second or so and has a gratis HTTP(S) API? I would like something to grab their attention and get them wondering how we can use this (cheap) device.

1 Answers1

1

Singapore offers an API for pollution levels (among 13 other real-time APIs)

try it in their docs page: https://data.gov.sg/dataset/psi

or with curl

curl -X GET "https://api.data.gov.sg/v1/environment/psi" -H  "accept: application/json"

or with the browser: https://api.data.gov.sg/v1/environment/psi


(not sure if any of these 14 real-time APIs are actually enough real-time)

philshem
  • 17,647
  • 7
  • 68
  • 170