Features
Postman export
Download a Postman Collection v2.1 JSON from any docs UI.
Every adapter ships an Export to Postman button in the docs UI that downloads a Postman Collection v2.1 JSON file derived from the route registry.
Each operation lands in the collection with:
- Method, path, query parameters, and request headers
- A request body populated with example values from the schema
- Saved example responses for every declared error response — so the Postman "Examples" panel shows you the 422 / 409 / 500 bodies the API can return
- The same tags / groups used by the UI sidebar
When to use Postman export vs OpenAPI export
| Need | Use |
|---|---|
| Share with team in Postman | Postman export |
| Drive a code generator | OpenAPI export |
| Mock the API | Mock server (also reads OpenAPI) |
| Run requests in CI | Request flows |