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 and return just its response body. Reach for request when you also need the status code, headers, or a non-GET method.
requestMake an HTTP request and inspect the full response, including status, headers, and body. Use this for APIs that need methods other than GET or require request headers.