ZelaxyDocs
Tool Integrations
Tool

HTTP

Make raw HTTP requests to any API endpoint

HTTP

The HTTP tool makes raw HTTP requests to any endpoint. It's the same as the API block but designed to be used as an Agent tool — the Agent decides when and how to make API calls during reasoning.

Overview

PropertyValue
Typehttp
CategoryTool — Developer
AuthNone (configured per request)

Operations

OperationDescription
RequestMake an HTTP request (any method)

Configuration

SettingTypeDescription
URLShort inputTarget URL
MethodDropdownGET, POST, PUT, PATCH, DELETE
HeadersTableCustom headers
BodyCode editorRequest body (POST/PUT)

Outputs

FieldTypeDescription
responsejsonResponse body
statusnumberHTTP status code
headersjsonResponse headers

Example: Agent with API Access

Workflow:

[Starter] → [Agent] → [Response]

        [HTTP] (connected as tool)

Give an Agent the ability to call any API. Provide the API docs in the system prompt, and the Agent constructs and executes requests dynamically.

Tips

  • Use API block for standalone requests; HTTP tool for Agent tool-calling
  • Agent decides the URL, method, and body based on the user's request
  • Provide API docs in the Agent's system prompt for best results