Pretty & Raw Views
Pretty View
Section titled “Pretty View”The Pretty view shows the response body with syntax highlighting powered by Monaco Editor. It automatically detects JSON, XML, and plain text.
// Response body (Pretty view):// Syntax-highlighted JSON with collapsible sections{ "userId": 1, "id": 1, "title": "Post title", "body": "Post content"}The editor is read-only but supports:
- Syntax highlighting
- Line numbers
- Collapsible code folding
- Word wrap
Raw View
Section titled “Raw View”The Raw view displays the response body as unformatted plain text. Use this when you need to see the exact, unprocessed response.
Raw view of the same response:{"userId":1,"id":1,"title":"Post title","body":"Post content"}Switching Views
Section titled “Switching Views”Click the Pretty or Raw tab in the response panel header to switch between views. The active view is highlighted.