- What's the difference from Postman?
- Lightweight, browser-based, no account needed. Postman has more features (automated tests, monitoring); REST Handler is focused on quick API exploration and team sharing.
- Collections — how do they work?
- Group related requests into a collection. Share via export/import. Collection JSON v2.1 is Postman-compatible for easy migration.
- Environment variables?
- Per-collection. Switch between dev/staging/prod with one click. Variables are templated into URLs, headers, and body: `{{baseUrl}}/users`.
- What about request history?
- Every executed request is saved locally. Replay any past request with one click. Stored in localStorage; clear history to purge.