There are only ugly HTML pages as download (HTML, HTML2 and dynamic all ugly), but the site, eg. edited https://app.swaggerhub.com/apis/{user}/{project}/{version}
(and many others!) offers pretty HTML interface... How to download this pretty HTML?
Complete and autonomous HTML code (file or zip of files).
I have a good and valid swagger.yaml
or swagger.json
file of my API, so another solution is to run a open sourse (plug and play!) tool with my API-description file.
Thanks to @tleyden at swagger-ui/issues for good clues!
Use the index and
assets
folder of this project, https://github.com/okfn-brasil/swagger-ui-htmlThe "pretty interface" on your screenshot is Swagger UI. It's free and open-source. There's a demo at http://petstore.swagger.io, where you can load your own .json/.yaml files from an URL and see how they would be rendered.
To use Swagger UI locally:
Go to https://github.com/swagger-api/swagger-ui and download the repository as ZIP:
Edit the
dist\index.html
file and change the lineto the URL of your Swagger .json or .yaml file, e.g.
(Optional) Add/change other configuration parameters in the
SwaggerUIBundle
initialization code indist\index.html
.Open the
dist\index.html
file in your browser to preview your API docs.Note: If the spec does not load or "try it out" does not work, you probably need to enable CORS on the your server. See https://github.com/swagger-api/swagger-ui#cors-support and https://enable-cors.org.
Upload the files from the
dist
folder somewhere to your server - and now you have pretty API docs too!Alternativey, SwaggerHub (which you mentioned) provides cloud hosting for Swagger specs among other things, and has Swagger UI integrated. You can import your Swagger .json/.yaml files there and have your API docs hosted on SwaggerHub. A free plan is available.