Documentation
Set up your documentation
Learn how to add your API documentation using OpenAPI
mintlify openapi-check <your-file-name-or-url>
docs.json
{ "navigation": { "tabs": [ { "tab": "API Reference", "openapi": "https://your-api-docs.json" } ] } }
openapi
.mdx
--- title: "Your Endpoint Name" openapi: "GET /users" ---
npx @mintlify/scraping@latest openapi-file your-openapi-file.json -o api-reference
{ "navigation": { "tabs": [ { "tab": "API Reference", "groups": [ { "group": "User Management", "openapi": { "source": "/openapi/users.json", "directory": "api/users" } } ] } ] } }
--- title: "User Object" openapi-schema: User ---
components.schemas
Was this page helpful?