GET
(used to retrieve data) or POST
(used to send or modify data).
https://
. This URL represents the specific address on the internet where the API is accessed.
Authorization: Bearer 1223456789
.
POST
requests where the body contains the information that needs to be processed by the API. The body can be provided in two ways: either as a structured list of key/value pairs with an additional type for each value (e.g., string, integer, boolean, json) or as a properly formatted JSON string.
GET
method) or modify data (using POST
method) at a specified URL. Along with the main request, you can send additional headers for things like authorization or content type declaration. You can also send a body with data associated with your request; for instance, information you want to store or process using the API.
Call API
node when you need to connect and communicate with an external service or system that offers a web API. This could be for various purposes such as retrieving user data, updating records, triggering remote processes, or simply requesting real-time data from another service. Whether you’re integrating with third-party services or connecting to your own backend systems, this node can be configured to fulfill the needed API call requirements.