Library: HTTP

networkbuilt-in

Simple HTTP client helpers. In v2.3 this is a minimal API; future versions can add headers, JSON body, streaming.

Install

# Built-in (no install needed)
# If packaged later:
# b3d pkg install http

API

Example

let r = http_get("https://example.com");
print(http_status(r));

Notes

For JSON APIs, combine with JSON library: parse_json(r["body"]).