My reading journal for Code Fellows
What does REST stand for?
REST APIs are designed around a ____.
What is an identifier of a resource? Give an example.
What are the most common HTTP verbs?
GET, POST, PUT, PATCH, and DELETEWhat should the URIs be based on?
Give an example of a good URI.

What does it mean to have a ‘chatty’ web API? Is this a good or a bad thing?
What status code does a successful GET request return?
What status code does an unsuccessful GET request return?
What status code does a successful POST request return?
What status code does a successful DELETE request return?