Body
The Body tab is the default view when a response is received. It displays the response body with syntax highlighting, along with a status bar showing key metrics. You can copy, format, or minify the response content.
Status Bar
The status bar at the top of the Body tab shows three key pieces of information, each with a detailed tooltip on hover:
| Metric | Display | Tooltip Content |
|---|---|---|
| Status | 200 OK | HTTP status code description from RFC 7231 |
| Time | 145.32 ms | Detailed timing breakdown with visual timeline |
| Size | 2.4 KB | Request and response size breakdown |
Status Code Categories
Timing Breakdown
Hovering over the Time metric shows a visual timeline of each phase of the request. This helps identify performance bottlenecks.
- High DNS Lookup: Consider using DNS caching or a faster DNS resolver
- High TLS Handshake: Connection pooling can help reuse existing connections
- High Server Response: Server-side optimization may be needed
- High Download: Response may be large; consider pagination or compression
Syntax Highlighting
Response bodies are automatically displayed with syntax highlighting based on the Content-Type header or content detection:
| Content-Type | Highlighting | Detection Fallback |
|---|---|---|
| application/json | JSON syntax (keys, strings, numbers, booleans) | Starts with { or [ |
| application/xml | XML syntax (tags, attributes, values) | Starts with < |
| text/html | HTML syntax (tags, attributes) | Starts with < |
| text/plain | Plain text (no highlighting) | Default fallback |
Action Buttons
When you hover over the response body, action buttons appear in the top-right corner:
Large Response Handling
Tigrister handles large responses efficiently to prevent UI slowdowns:
Preview Mode
Responses larger than 500 KB are shown in preview mode. Only the first 10 KB is displayed, with a warning banner showing the full size.
Click "Load Full Response" to display the entire content. Note that very large responses may cause temporary UI slowdown while rendering.
Redirect Handling
When the server returns a redirect response (3xx status code), Tigrister shows a "Follow Redirect" button:
The following status codes are detected as redirects:
Time and Size Formatting
Times and sizes are displayed in human-readable formats:
Time Format
450 µs145.32 ms2.45 sSize Format
512 B24.5 KB1.2 MB