Your board can now fetch data over HTTP and parse JSON responses directly inside a script. That means you can show live weather, crypto prices, transit times, sports scores — anything with a web API — right on your device's screen. No cloud middleman or extra hardware is needed; the board talks to the API on its own. This turns any display into a live information dashboard.
It's one of the most requested capabilities, and it's now built in.
VAR j = HTTP_GET("https://api.example.com/weather")
VAR temp = JSON_GET(j, "main.temp")
DISPLAY_TEXT(10, 10, "Temp: " + STR$(temp), 0xFFFFFF, 24)
