Overview - Pretty, raw, and preview views
What is it?
In Postman, when you send a request and receive a response, you can view the response data in three ways: Pretty, Raw, and Preview. The Pretty view formats the response to be easy to read with colors and indentation. The Raw view shows the exact response as received, without any formatting. The Preview view renders the response as a web page if it contains HTML or similar content.
Why it matters
These views help testers and developers understand the response data clearly and quickly. Without these views, it would be hard to read complex data or verify how the server actually responded. This would slow down debugging and testing, making it difficult to find errors or confirm correct behavior.
Where it fits
Before learning these views, you should know how to send requests and receive responses in Postman. After mastering these views, you can learn how to write tests in Postman that check response content automatically.