Skip to content
AdlyseDocs
Product guideMCP reference
⌘K
Open Adlyse
⌘K
WelcomeQuick startGlossary

Connect your accounts and bring your team in.

Onboarding wizardAd accountsTeam

The screens you'll check every day.

HomeExplorerReports
Creative intelligence
AI Studio

The context Adlyse works from.

Brand profileFilesTables

Accounts, people, and integrations.

OrganizationIntegrationsAPI keysDeveloper (MCP)
  1. Legacy
  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