Skip to content

Request History

Nouto logs every request you send to a persistent history store. The History tab in the sidebar lets you browse, search, filter, and re-open past requests, even after restarting VS Code or the desktop app.

Click the History tab in the sidebar (alongside Collections and Variables). Entries are displayed in reverse chronological order, grouped by date:

  • Today
  • Yesterday
  • This Week
  • Earlier

Each entry shows:

  • HTTP method badge (color-coded)
  • URL path (truncated, with full URL on hover)
  • Response status code (green for 2xx, yellow for 3xx, red for 4xx/5xx)
  • Response time (e.g., 150ms, 1.2s)
  • Relative timestamp (e.g., 5m, 2h, 3d)

Every request is logged automatically, whether it belongs to a collection or is an unsaved draft. Both successful responses and errors are recorded. Error entries show status 0 with the error message.

Type in the search bar to filter entries by URL, request name, or HTTP method. Search is debounced for responsiveness.

Click the method pills (GET, POST, PUT, PATCH, DELETE) to toggle filtering by HTTP method. Multiple methods can be active at once. Click again to deselect.

History search matches against URLs, request names, and methods. When response body saving is enabled (Settings > General), you can also search within response bodies.

Right-click a history entry for:

  • Open: re-opens the request in a new panel with the original method, URL, headers, params, auth, and body pre-filled
  • Save to Collection: save the request to a collection
  • Pin: mark as a favorite
  • Copy URL: copy the full request URL
  • Delete: remove the entry from history

The history statistics panel shows aggregate data across your history:

  • Top endpoints: most frequently called URLs
  • Status distribution: breakdown by 2xx, 3xx, 4xx, 5xx
  • Average response time: across all or filtered entries
  • Requests per day: volume over time

Export your full history as a JSONL file for backup, analysis, or sharing. Import a previously exported JSONL file to restore history on a different machine or after a clean install.

History loads 50 entries at a time. A Load More button appears at the bottom when additional entries exist.

Limit Value
Maximum entries 10,000 (VS Code) / 2,000 (Desktop)
Maximum age 90 days (auto-pruned on startup)
Response body cap 256 KB per entry (larger bodies are truncated)

Old entries beyond these limits are pruned automatically.

Click the trash icon next to the search bar to clear all history. This is permanent.