Concept Flow - GET for reading resources
Client sends GET request
Server receives request
Server looks up resource
Resource found?
No→Send 404 Not Found
Yes
Send resource data in response
Client receives data
The client sends a GET request to the server, which looks up the requested resource and returns it if found, or a 404 error if not.