HTTP
Fetch response bodies with httpget or use request for explicit methods, headers, cookies, and status information. Request and response fields are documented directly on the function page.
Functions
httpgetFetch a URL through the host HTTP GET wrapper and return its response body. Use it for a simple download when only the body matters. Use request when you need to branch on status codes, send a payload, or read response headers.
requestSend an HTTP request using a URL, method, and optional payload. The call waits for the response and returns its body, status, and headers together. Use it when a script needs to handle HTTP status codes, inspect headers, or send a body. Receiving a response and receiving a successful status are separate outcomes.