Zudoku supports creating documentation and API references for multiple APIs and can work with as many OpenAPI documents as you need.
In order to do this you will need to modify the Zudoku Configuration file to include additional APIs.
Using multiple APIs is a configuration setting that you can add in the Zudoku Configuration file.
First, create a new array in Zudoku Configuration that lists each API you want to include as its own object:
typescriptconst navigation = [{label: "The first API",id: "the-first-api-openapi",},{label: "The second API",id: "the-second-api",},];
Modify the Zudoku Configuration file so that the sidebar
and apis
settings look the same as below:
typescriptimport { type ZudokuConfig } from "zudoku";const navigation = [{label: "The first API",id: "the-first-api-openapi",},{label: "The second API",id: "the-second-api",},];const config: ZudokuConfig = {topNavigation: [{ id: "home", label: "Home" },{ id: "home2", label: "Home 2" },],redirects: [{ from: "/", to: "/home" }],sidebar: {home: [...navigation.map((item) => ({type: "link",label: item.label,href: `/${item.id}`,})),],},apis: [...navigation.map((item) => ({type: "url",input: `http://example.com/api/${item.id}.json`,navigationId: item.label,skipPreload: true,})),],};export default config;
As you can see in the example above, we have added additional code that maps through the items in the navigation
array and creates new sidebar items, as well as the correct URLs for the APIs.