Problem Statement
Explain the structure of a typical REST API response.
Explanation
A REST API response usually includes a status code, headers, and a body. The body often contains data in JSON format along with success or error messages. Headers describe content type and caching rules.
