Working with Multiple Collections
Standalone Mode supports working with multiple collections simultaneously — perfect for microservices architectures or comparing different API versions.
Managing Multiple Collections
Importing Multiple Collections:
- Import your first collection (e.g., “User Service”).
- Click Import again.
- Import your second collection (e.g., “Payment Service”).
- Both collections appear as separate folders in the sidebar.
Each collection maintains its own base URL and authentication settings. Click any collection to expand and browse its endpoints.
Example Sidebar Structure:
📁 User Service API v1
├── GET /users
├── POST /users
└── GET /users/{id}
📁 Payment Service API v2
├── GET /payments
├── POST /payments
└── GET /invoices
📁 Notification Service
├── POST /notify
└── GET /templatesStandalone Mode vs. Project Mode
| Standalone Mode | Project Mode | |
|---|---|---|
| Exploring a new API | ✅ | |
| Debugging in isolation | ✅ | |
| Verifying API documentation | ✅ | |
| Working with multiple APIs | ✅ | |
| Generated hooks and types | ✅ | |
| Codebase sync | ✅ | |
| Version control | ✅ | |
| CI/CD integration | ✅ |
Last updated on