The tool
http_request:
The response carries the status, response headers, and the body as a string.
Credentials
HTTP Client has no stored credentials and no per-binding configuration. Any authentication has to arrive in theheaders argument on each call — which means
the model has to have been given the secret.
HTTP Client is the right tool for public endpoints, for internal endpoints that
need no auth, and for one-off exploration. A recurring authenticated integration
is a connector.
Limits
A body over the limit is rejected before the request is sent; an oversized
response is rejected on read.
Cost
Metered per request. See noorle.com/pricing.Autonomy
Act tier — includingGET. The verb lives in the arguments, so the whole
tool sits at the higher tier rather than trying to infer intent per call. At
Read-only autonomy http_request is denied outright.
Next
- Connectors — the credentialed path
- Browser — when the response is a web page, not JSON