MarkdownTools
All Tools
Cheat Sheets
Converters
Generators
Text Tools
Editor
Search…
Ctrl K
OpenAPI to Markdown
Convert OpenAPI JSON or YAML into endpoint documentation.
OpenAPI spec
openapi: 3.1.0 info: title: Widget API version: 1.0.0 servers: - url: https://api.example.com paths: /widgets: get: summary: List widgets parameters: - name: limit in: query schema: type: integer responses: "200": description: OK
Markdown output
Copy
Download
# Widget API Version: `1.0.0` ## Servers | URL | Description | | --- | --- | | https://api.example.com | - | ## Endpoints ### `GET /widgets` List widgets | Name | In | Type | Required | Description | | --- | --- | --- | --- | --- | | limit | query | integer | no | - | | Status | Description | | --- | --- | | 200 | OK |