Simple HTTP client helpers. In v2.3 this is a minimal API; future versions can add headers, JSON body, streaming.
# Built-in (no install needed)
# If packaged later:
# b3d pkg install http
let r = http_get("https://example.com");
print(http_status(r));
For JSON APIs, combine with JSON library: parse_json(r["body"]).