Skip to content

Rest Api Definition

06/03/2022 22:38

Parent: [[]] Tags: #

What is REST API?:

  • REST - Representational State Transfer
    • To establish a more reliable, quick and load-free communication between server and client in web.
  • How?
    • By exposing the web-resources the representational state of which can be accessed using HTTP methods such as GET, POST, PUT, DELETE.
    • Response and request follow HTTP (HyperText Transfer Protocol)
    • The response will be of HTML, json-format or XML format.
  • REST APIs also called as Restful APIs are called so if they meet the rest-constriants

References:

On this page