url
(string, required): The URL to make the request to.method
(string, optional): The HTTP method to use for the request. Choices include:
GET
(default)POST
PUT
DELETE
PATCH
headers
(object, optional): An object containing the headers to send with the request. Defaults to {}
.body
(object, optional): The request body to send. Defaults to {}
.authToken
(string, optional): An authentication token to include in the request.authTokenHeader
(string, optional): The name of the header to use for the authToken
.flow
(flow): The input flow to trigger the node.response
(object): The response from the API, including the response body, status code, and headers.flow
(flow): The output flow to trigger the next node in the spell.url
of the API endpoint you want to call.method
for your request.headers
object for any custom headersbody
object for POST/PUT/PATCH requestsauthToken
and authTokenHeader
for authenticated requestsresponse
output to downstream nodes to use the API response.flow
to trigger the next action.url
: https://jsonplaceholder.typicode.com/posts/1
method
: GET
message
: {{flow.response.body}}
Content-Type
and authentication headersresponse
object if neededurl
method
for the intended actionContent-Type
or authentication tokensresponse
object and identify any problems with the request or response.