Skip to main content

HTTP Request

With the HTTP Request feature, you can send data requests to already created APIs. HTTP requests are used to fetch data or send data to a remote server.

HTTP Request

An HTTP Request consists of the following elements:

  • Method: Select the HTTP method (e.g., GET, POST, PUT, DELETE, etc.). The method determines the purpose of the API request.
  • End Point: Enter the URL of the API to which you are sending the request.
  • Header: Set the request headers. Headers provide metadata about the request and can include content type of the request body, authentication tokens, and more.
  • Body: Set the request body. This is mainly used in POST or PUT requests and contains the data to be sent to the server. It can be linked with data from the Front-end Editor screen.
note

HTTP Request is a primary means of exchanging data between server and client. To make the most out of an already created API, appropriate settings for the method, endpoint, headers, and body are required.