DEV Community

Md.  Raihan Hossain Jibon
Md. Raihan Hossain Jibon

Posted on

API and CRUD system

API stands for application programming interface, which is a set of definitions and protocols for building and integrating application software.

REST API stands for Representational State Transfer and is an architectural pattern for creating web services. It was developed by Roy Fielding in 2000 and has led to a growing collection of RESTful web services that follow the REST principles.

Rest API Data sharing clients and servers. Its easy design style is used creating HTTP or other. REST applications use methods GET, POST, DELETE and PUT.

GET Methods

Stored data call from the server to client-side using GET method. The GET method works as a data read system.

POST Method

POST Method used to create new data to save server.

DELETE Method

Delete method used for data delete to server.

PUT Method

This method is used when any data information changes or updates then used put method.

Top comments (0)