How to Migrate from Postman to Hoppscotch
·OSSAlt Team
postmanhoppscotchmigrationapi testingguide
How to Migrate from Postman to Hoppscotch
Postman's free plan limits collaboration to 3 users, and paid plans start at $14/user/month. Hoppscotch is the open source alternative — fast, web-based, and free for teams. Here's how to switch.
Step 1: Export from Postman
- Open Postman → select your collection
- Click ⋯ → Export
- Choose Collection v2.1 format
- Save the JSON file
- Repeat for environments: ⚙️ → Manage Environments → Export
Step 2: Access Hoppscotch
Option A: Use hoppscotch.io (free, web-based)
Option B: Self-host
docker run -d \
-p 3000:3000 \
-p 3100:3100 \
-p 3170:3170 \
--name hoppscotch \
hoppscotch/hoppscotch
Step 3: Import Collections
- Open Hoppscotch → Collections sidebar
- Click Import/Export → Import from Postman
- Upload your exported JSON file
- Collections import with requests, folders, and headers
Step 4: Set Up Environments
- Click Environments (bottom panel)
- Create environments matching your Postman setup:
- Development:
baseUrl = http://localhost:3000 - Staging:
baseUrl = https://staging-api.example.com - Production:
baseUrl = https://api.example.com
- Development:
- Use
<<baseUrl>>in request URLs (Hoppscotch syntax)
Note: Hoppscotch uses <<variable>> syntax instead of Postman's {{variable}}.
Step 5: Key Differences
| Postman | Hoppscotch |
|---|---|
| Desktop app + web | Web-first (PWA) |
{{variable}} | <<variable>> |
| Pre-request scripts | Limited scripting |
| Newman CLI runner | CLI available |
| Mock servers | Not available |
| API monitoring | Not available |
| GraphQL | ✅ Built-in |
| WebSocket | ✅ Built-in |
| SSE | ✅ Built-in |
| MQTT | ✅ Built-in |
| gRPC | ✅ Built-in |
What You'll Gain
- No account required — use immediately (web version)
- Real-time protocol support — WebSocket, SSE, MQTT, gRPC built-in
- Faster UI — lighter than Postman's Electron app
- No team limits — self-hosted = unlimited users
- Open source — MIT license
What You'll Lose
- Pre-request and test scripts
- Mock servers
- API monitoring
- Newman CI/CD integration (Hoppscotch has its own CLI)
Compare API testing tools on OSSAlt — protocol support, collaboration features, and self-hosting side by side.