Skip to main content

GET

Last updated 29/08/2023

The
GET
method is used to request data from a specified resource. Requests using the
GET
method only receive data but you can still send data to the server on the Params page as URL parameters. The
GET
method has no request body.

HTTP GET Request Format

The
GET
request begins with the HTTP/S method, followed by the request URI and the resource in the API documentation. The resource is separated by a
/
.

Examples

https://fakestoreapi.com/products


http://api.citybik.es/v2/networks


https://dummyjson.com/comments

Field Mapping

Five will map the fields from the REST data to a field in a Connection data source and try its best to automatically perform the following tasks:

  • Calculate the primary key field, however, you should ensure it is correct as this field is used to map a single record.
  • Map the fields, however, you are free to add, edit, and delete fields here to suit your requirements.
You can use the Data Type field to select how you want to store the data and the Default Display Type field to select how you want to display the data.

Add a GET Request