Skip to main content

HTTP API

HTTP requests against the connection's allow-listed base URL.

Connect to a REST API with an API key. Requests are limited to the base URL.

Connect

Credential fieldRequiredWhere it comes from
API key (API_KEY)NoSent as “Authorization: Bearer <key>”. Stored encrypted; never readable again.
SettingRequiredWhat it is
Base URL (BASE_URL)Yese.g. https://api.example.com - every request stays under it
Request timeout (ms) (TIMEOUT_MS)No

Tools

ToolAccessWhat it does
HTTP request (yekar.http.request)WriteHTTP request against the connection's allow-listed base URL. Pass saveAs to download the response to a file (images, PDFs, archives) instead of reading it as text; the file comes back as an attachment.

Notes

  • Requests are restricted to the base URL you configure - path traversal and redirects off-origin are rejected.
  • Your API key is sent as “Authorization: Bearer <key>” on every request and never appears in logs or step outputs.
  • Automation steps call the “http.request” tool with a method, path, query, and body.