14.3.6 Check Your Understanding - Apis __exclusive__
The client sends a message to the server. This request usually contains a (endpoint), a Method (what you want to do), and sometimes Headers (authentication keys). B. The Response The server sends back a status code and the requested data. 200 OK: Success. 404 Not Found: The resource doesn't exist. 500 Internal Server Error: The server crashed. C. Methods (The Verbs) GET: Retrieve data (e.g., loading your Twitter feed). POST: Send new data (e.g., posting a new tweet). PUT/PATCH: Update existing data. DELETE: Remove data. D. JSON (The Language)
The database where the food (information) is prepared. 14.3.6 check your understanding - apis