"openapi": "openapi.json" on a tab, Holocron generates one page per operation in the spec.| Operation | Generated slug |
GET /users | api/get-users |
POST /users | api/post-users |
base prefix (default "api") is prepended to all slugs.x-holocron.href on an operation to replace its generated slug. The Mintlify-compatible x-mint.href alias works too.12345paths: /users: get: x-holocron: href: /api-reference/users/list
/api-reference/users/list instead of /api/get-users. Custom href values must be internal paths without a query string or hash.tags field in the spec. Each tag becomes a sidebar group:123456789101112paths: /users: get: tags: [Users] operationId: listUsers post: tags: [Users] operationId: createUser /teams: get: tags: [Teams] operationId: listTeams
get-users, post-usersget-teams