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:
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 codebody- Response body (parsed JSON if applicable)headers- Response headers