AdlyseAdlyseDocs
Welcome
Getting Started
QuickstartOnboarding Wizard
Essentials
DashboardAd AccountsExplorerReportsSearch TermsDecision Log
AI Studio
Adlyse AISkillsGuidelinesSchedules
Admin
OrganizationTeam
Integrations
OverviewMCP Servers →API Keys
Legacy Docs
OverviewQuickstartCookbookWorkflowVariablesKnowledge BaseAPI Keys (legacy)NodesSelf HostingSelf-Host Auth
  1. Overview/
  2. Core Concepts/
  3. Nodes

API Call Node

The API Call Node makes HTTP requests to external APIs and services.

Overview#

Use API Call Nodes to:

  • Integrate with external services
  • Fetch data from APIs
  • Send data to webhooks
  • Connect to custom backends

Configuration#

HTTP Method#

  • GET - Retrieve data
  • POST - Send data
  • PUT - Update data
  • DELETE - Remove data

URL#

The API endpoint URL. Use variables for dynamic URLs:

plaintext
https://api.example.com/users/{{input.user_id}}

Headers#

Add custom headers (e.g., Authorization, Content-Type).

Body#

Request body for POST/PUT requests (JSON format).

Authentication#

Supports:

  • API Keys
  • Bearer Tokens
  • Basic Auth
  • Custom Headers

Output#

Returns:

  • status - HTTP status code
  • body - Response body (parsed JSON if applicable)
  • headers - Response headers