Skip to content

Pretty & Raw Views

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

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"}

Click the Pretty or Raw tab in the response panel header to switch between views. The active view is highlighted.