Representational State Transfer
set of architectural constraints or principles, also known as RESTful constraints
a unique string or URI (Uniform Resource Identifier) that identifies a specific resource on the web. For example, consider a web service that provides information about Disney.https://example.com/anime/123
Get, Post, Delete, Patch, Head, Options
based on the resources that they identify
https://disney.com/onepiece/v1/love2watch/12345/
efers to an API that requires a large number of small requests (chatty requests) to perform a single high-level action or retrieve a large amount of data.
a status code of 200 OK
404 Not Found,401 Unauthorized,403 Forbidden,400 Bad Request
201 Created or 200 OK.
204 No Content.