Call an API
When you need to talk to a service that a workflow does not have a built-in step for, you send it an HTTP request directly. You set the method and URL, add any headers the service needs, and then read the response in later steps.
Nodes involved
- HTTP Request sends the request and returns the response.
How to build it
Set the method and URL
Add an HTTP Request step. Choose the method (such as GET or POST) and enter
the URL of the service you are calling.
Authenticate with a secret
Most services need a credential. Store it as a secret and build the Authorization header from it rather than typing the key in:
The real key never appears in the workflow.
If the service can be slow or flaky, review the step’s time limit and retry behavior. See Timeouts & Retries.