☝️Endpoints

Endpoint is a request-able URL from your Project. The base URL is the address where the API is hosted.

For example project API ToDo list has base URL https://modi-bd1bc8.mywebapp.rocks/ with the endpoint /lists. If I make a request https://modi-bd1bc8.mywebapp.rocks/lists I will get back a list/lists (depending on data).

Base URL

  1. Press button Run in your Project.

  2. Next to the API Builder tab will be open the new tab with your project.

  3. Copy the link in this new tab.

  4. Use it for creating requests to the API Project.

Each entity in the Project has its own endpoints listed on the Endpoints tab.

  • Status: The endpoint could be Enable or Disable.

! Disable endpoints could not be used for requests.

Mistake {....}

  • Method: a request type.

POST

sends data you have entered, and returns a confirmation that the data you sent was received

GET

returns information from the API

PATCH

sends data that modifies a record that an API has access to

DELETE

deletes a record that an API has access to

Path: refers to the Endpoint that is added to the main URL

Last updated