Skip to main content

vulkro export

Export the detected API surface in another format. Where vulkro discover shows the endpoint map interactively, export writes it out for another tool.

Usage

vulkro export [PATH] --target openapi -o openapi.json
ArgumentDescriptionDefault
PATHPath to the project root..

Flags

FlagDescription
--target <TARGET>Export target: openapi (default) or json.
--output, -o <OUTPUT>Write to a file instead of stdout.

Examples

# OpenAPI 3.x of the discovered surface.
vulkro export . --target openapi -o openapi.json

# Raw JSON of the endpoint surface.
vulkro export . --target json > surface.json