Skip to main content
The navigation property in docs.json controls the structure and information hierarchy of your documentation. With proper navigation configuration, you can organize your content so that users can find exactly what they’re looking for. Choose one primary organizational pattern at the root level of your navigation. Once you’ve chosen your primary pattern, you can nest other navigation elements within it.

Pages

Pages are the most fundamental navigation component. Each page is an MDX file in your documentation repository. Decorative graphic of pages. In the navigation object, pages is an array where each entry must reference the path to a page file.
{
  "navigation": {
    "pages": [
      "settings",
      "pages",
      "navigation",
      "themes",
      "custom-domain"
    ]
  }
}

Groups

Use groups to organize your sidebar navigation into sections. You can nest groups within each other, label them with tags, and style them with icons. Decorative graphic of groups. In the navigation object, groups is an array where each entry is an object that requires a group field and a pages field. The icon, tag, root, and expanded fields are optional.
{
  "navigation": {
    "groups": [
      {
        "group": "Getting started",
        "icon": "play",
        "pages": [
          "quickstart",
          {
            "group": "Editing",
            "expanded": false,
            "icon": "pencil",
            "pages": [
              "installation",
              "editor"
            ]
          }
        ]
      },
      {
        "group": "Writing content",
        "icon": "notebook-text",
        "tag": "NEW",
        "pages": [
          "writing-content/page",
          "writing-content/text"
        ]
      }
    ]
  }
}

Root page

Use the root property to designate a main page for a group. When a group has a root page, clicking the group title in the sidebar navigation opens the root page. Root pages work for top-level and nested groups.
Example group with a root page
{
  "navigation": {
    "groups": [
      {
        "group": "API pages",
        "root": "api-overview",
        "pages": [
          "api-reference/get",
          "api-reference/post",
          "api-reference/delete"
        ]
      }
    ]
  }
}

Default expanded state

Use the expanded property to control the default state of a nested group in the navigation sidebar.
  • expanded: true: Group is expanded by default.
  • expanded: false or omitted: Group is collapsed by default.
The expanded property only affects nested groups—groups within groups. Top-level groups are always expanded and cannot be collapsed.
{
  "group": "Getting started",
  "pages": [
    "quickstart",
    {
      "group": "Advanced",
      "expanded": false,
      "pages": ["installation", "configuration"]
    }
  ]
}

Tree navigation

Set the mode property to "tree" on a group to display a navigation tree on its root page. The tree lists child pages and nested groups, giving readers a browsable overview of the section.
{
  "navigation": {
    "groups": [
      {
        "group": "Guides",
        "root": "guides/overview",
        "mode": "tree",
        "pages": [
          "guides/quickstart",
          "guides/configuration",
          {
            "group": "Advanced",
            "root": "guides/advanced/overview",
            "pages": ["guides/advanced/plugins", "guides/advanced/theming"]
          }
        ]
      }
    ]
  }
}
Tree navigation requires the group to have a root page. The tree is rendered on that root page.

Mode inheritance

The mode property inherits recursively. Setting it on a parent element (such as the top-level navigation object, a tab, or an anchor) applies it to all descendant groups. Any descendant can override the inherited mode by setting its own mode.
{
  "navigation": {
    "mode": "tree",
    "groups": [
      {
        "group": "All groups inherit tree mode",
        "root": "section/overview",
        "pages": ["section/page-one", "section/page-two"]
      },
      {
        "group": "Except this one",
        "mode": "auto",
        "root": "other/overview",
        "pages": ["other/page-one"]
      }
    ]
  }
}

Tabs

Tabs create distinct sections of your documentation with separate URL paths. Tabs create a horizontal navigation bar at the top of your documentation that lets users switch between sections. Decorative graphic of a tab navigation. In the navigation object, tabs is an array where each entry is an object that requires a tab field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
{
  "navigation": {
    "tabs": [
      {
        "tab": "API reference",
        "icon": "square-terminal",
        "pages": [
          "api-reference/get",
          "api-reference/post",
          "api-reference/delete"
        ]
      },
      {
        "tab": "SDKs",
        "icon": "code",
        "pages": [
          "sdk/fetch",
          "sdk/create",
          "sdk/delete"
        ]
      },
      {
        "tab": "Blog",
        "icon": "newspaper",
        "href": "https://external-link.com/blog"
      }
    ]
  }
}
Menus add dropdown navigation items to a tab. Use menus to help users go directly to specific pages within a tab. In the navigation object, menu is an array where each entry is an object that requires an item field and can contain other navigation fields such as groups, pages, icons, or links to external pages. Menu items can only contain groups, pages, and external links.
{
  "navigation": {
    "tabs": [
      {
        "tab": "Developer tools",
        "icon": "square-terminal",
        "menu": [
          {
            "item": "API reference",
            "icon": "rocket",
            "groups": [
              {
                "group": "Core endpoints",
                "icon": "square-terminal",
                "pages": [
                  "api-reference/get",
                  "api-reference/post",
                  "api-reference/delete"
                ]
              }
            ]
          },
          {
            "item": "SDKs",
            "icon": "code",
            "description": "SDKs are used to interact with the API.",
            "pages": [
              "sdk/fetch",
              "sdk/create",
              "sdk/delete"
            ]
          }
        ]
      }
    ]
  }
}

Anchors

Anchors add persistent navigation items to the top of your sidebar. Use anchors to section your content, provide quick access to external resources, or create prominent calls to action. Decorative graphic of an anchor navigation. In the navigation object, anchors is an array where each entry is an object that requires an anchor field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
{
  "navigation": {
    "anchors": [
      {
        "anchor": "Documentation",
        "icon": "book-open",
        "pages": [
          "quickstart",
          "development",
          "navigation"
        ]
      },
      {
        "anchor": "API reference",
        "icon": "square-terminal",
        "pages": [
          "api-reference/get",
          "api-reference/post",
          "api-reference/delete"
        ]
      },
      {
        "anchor": "Blog",
        "href": "https://external-link.com/blog"
      }
    ]
  }
}

Global anchors

Use global anchors for links that should appear on all pages, regardless of which section of your navigation the user is viewing. Global anchors are particularly useful for linking to resources outside your documentation (such as a blog, community forum, or support portal) or for providing consistent access to important internal pages (such as a changelog or status page). Global anchors support both external URLs and relative paths to pages within your documentation.
{
  "navigation": {
    "global":  {
      "anchors": [
        {
          "anchor": "Changelog",
          "icon": "list",
          "href": "/changelog"
        },
        {
          "anchor": "Blog",
          "icon": "pencil",
          "href": "https://mintlify.com/blog"
        }
      ]
    },
    "tabs": /*...*/
  }
}

Products

Decorative graphic of a product switcher. Products create a dedicated navigation division for organizing product-specific documentation. Use products to separate different offerings, services, or major feature sets within your documentation. In the navigation object, products is an array where each entry is an object that requires a product field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
{
  "navigation": {
    "products": [
      {
        "product": "Core API",
        "description": "Core API description",    
        "icon": "api",
        "groups": [
          {
            "group": "Getting started",
            "pages": [
              "core-api/quickstart",
              "core-api/authentication"
            ]
          },
          {
            "group": "Endpoints",
            "pages": [
              "core-api/users",
              "core-api/orders"
            ]
          }
        ]
      },
      {
        "product": "Analytics Platform",
        "description": "Analytics Platform description",
        "icon": "chart-bar",
        "pages": [
          "analytics/overview",
          "analytics/dashboard",
          "analytics/reports"
        ]
      },
      {
        "product": "Mobile SDK",
        "description": "Mobile SDK description",
        "icon": "smartphone",
        "href": "https://mobile-sdk-docs.example.com"
      }
    ]
  }
}
Dropdowns are an expandable menu at the top of your sidebar navigation. Each item in a dropdown directs to a section of your documentation. Decorative graphic of a dropdown navigation. In the navigation object, dropdowns is an array where each entry is an object that requires a dropdown field and can contain other navigation fields such as groups, pages, icons, or links to external pages.
{
  "navigation": {
    "dropdowns": [
      {
        "dropdown": "Documentation",
        "icon": "book-open",
        "pages": [
          "quickstart",
          "development",
          "navigation"
        ]
      },
      {
        "dropdown": "API reference",
        "icon": "square-terminal",
        "pages": [
          "api-reference/get",
          "api-reference/post",
          "api-reference/delete"
        ]
      },
      {
        "dropdown": "Blog",
        "href": "https://external-link.com/blog"
      }
    ]
  }
}

OpenAPI

Integrate OpenAPI specifications directly into your navigation structure to automatically generate API documentation. Create dedicated API sections or place endpoint pages within other navigation components. Set a default OpenAPI specification at any level of your navigation hierarchy. Child elements inherit the specification unless they define their own.
When you add the openapi property to a navigation element (such as an anchor, tab, or group) without specifying any pages, Mintlify automatically generates pages for all endpoints defined in your OpenAPI specification.To control which endpoints appear, explicitly list the desired endpoints in a pages array.
For more information about referencing OpenAPI endpoints in your docs, see the OpenAPI setup.
{
  "navigation": {
    "groups": [
      {
        "group": "API reference",
        "openapi": "/path/to/openapi-v1.json",
        "pages": [
          "overview",
          "authentication",
          "GET /users",
          "POST /users",
          {
            "group": "Products",
            "openapi": "/path/to/openapi-v2.json",
            "pages": [
              "GET /products",
              "POST /products"
            ]
          }
        ]
      }
    ]
  }
}

Versions

Partition your navigation into different versions. Versions are selectable from a dropdown menu. Decorative graphic of a version switcher. In the navigation object, versions is an array where each entry is an object that requires a version field and can contain any other navigation fields.
{
  "navigation": {
    "versions": [
      {
        "version": "1.0.0",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["v1/overview", "v1/quickstart", "v1/development"]
          }
        ]
      },
      {
        "version": "2.0.0",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["v2/overview", "v2/quickstart", "v2/development"]
          }
        ]
      }
    ]
  }
}

Default version

Mintlify uses the first version in the versions array as the default. Use the default field to specify a different version as the default.
{
  "navigation": {
    "versions": [
      {
        "version": "1.0.0",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["v1/overview", "v1/quickstart"]
          }
        ]
      },
      {
        "version": "2.0.0",
        "default": true,
        "groups": [
          {
            "group": "Getting started",
            "pages": ["v2/overview", "v2/quickstart"]
          }
        ]
      }
    ]
  }
}

Version tags

Add a badge label to version entries in the version selector dropdown using the optional tag field. Use tags to highlight specific versions such as “Latest,” “Recommended,” or “Beta.”
{
  "navigation": {
    "versions": [
      {
        "version": "2026_03",
        "tag": "Latest",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["getting-started", "quickstart"]
          }
        ]
      },
      {
        "version": "2025_12",
        "tag": "Recommended",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["2025_12/getting-started", "2025_12/quickstart"]
          }
        ]
      },
      {
        "version": "2025_09",
        "tag": "Deprecated",
        "groups": [
          {
            "group": "Getting started",
            "pages": ["2025_09/getting-started", "2025_09/quickstart"]
          }
        ]
      }
    ]
  }
}

Languages

Partition your navigation into different languages. Languages are selectable from a dropdown menu. Decorative graphic of a language switcher. In the navigation object, languages is an array where each entry is an object that requires a language field and can contain any other navigation fields, including language-specific banner, footer, and navbar configurations. We currently support the following languages for localization:
https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ar.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=3701b421733d3272b68d56d9ce0891e6

Arabic (ar)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ca.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=3445b83d6302e5be64c2714690d344bf

Catalan (ca)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/cs.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=16ddfdb8cbc25bdf6e72508d6ca6d5b5

Czech (cs)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/cn.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=e2dd18d728d66949263a94ed18305780

Chinese (cn)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/cn.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=e2dd18d728d66949263a94ed18305780

Chinese (zh-Hant)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/nl.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=d97ef9af78e9ea862ef49753dd4f9317

Dutch (nl)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/en.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=7bcf776a926462b8fe228e4ba1916716

English (en)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/fr.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=b368d2d597d75f21e5e560117fb5d644

French (fr)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/de.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=fe248956408b41991c93d07f04f2f7fe

German (de)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/he.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=de569b54b23c27febe1e787cf1b2d390

Hebrew (he)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/hi.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=5555512796fa1578a5d9b4ab0dae91b6

Hindi (hi)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/hu.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=b337f4cf2603af51857756ba33e384e2

Hungarian (hu)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/id.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=ad5d2fa238bcc44147a4935679d2a65c

Indonesian (id)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/it.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=ba019be9eb2d495044a62babb66d19d2

Italian (it)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/jp.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=64cfcfeb056de84a9d84b8a86b93622a

Japanese (jp)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ko.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=2184c9893f373db2283969a060506e52

Korean (ko)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/lv.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=119e2deef6eafb2db8e2c3d72c895b66

Latvian (lv)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/no.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=bae3a5d68b962d6b77647f04799cc1f1

Norwegian (no)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/pl.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=45a88e9b9bc193fc17806faf7d1d060f

Polish (pl)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/pt-br.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=c973efa77d43b641593e7cd62868628f

Portuguese (pt-BR)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ro.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=1bcb3b44dd19409ecbf1f3d03af1ba06

Romanian (ro)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ru.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=bccb7531eb7caea52994a49ced838206

Russian (ru)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/es.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=28213bbd674c787611937b4735d7e196

Spanish (es)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/sv.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=095f7bcee14ba18036a5f6fecbe52d32

Swedish (sv)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/tr.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=7c8b4172e4b5e441bce164382c72a08c

Turkish (tr)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/ua.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=a65f61b1cf72f64759d8dd6705f2e9e3

Ukrainian (ua)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/uz.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=03ce382143222a85ea1f349024a319dc

Uzbek (uz)

https://mintcdn.com/mintlify-mintlify-tree-navigation-mode-1775246340/9Z5LYTiC_XPc-C8Z/images/navigation/languages/vi.png?fit=max&auto=format&n=9Z5LYTiC_XPc-C8Z&q=85&s=e5c086a8b84392c7c9fb1464d954e280

Vietnamese (vi)

{
  "navigation": {
    "languages": [
      {
        "language": "en",
        "banner": {
          "content": "🚀 Version 2.0 is now live! See our [changelog](/en/changelog) for details.",
          "dismissible": true
        },
        "footer": {
          "socials": {
            "x": "https://x.com/mintlify"
          },
          "links": [
            {
              "header": "Resources",
              "items": [
                { "label": "Documentation", "href": "/en/docs" },
                { "label": "Blog", "href": "https://mintlify.com/blog" }
              ]
            }
          ]
        },
        "navbar": {
          "links": [
            { "label": "Docs", "href": "/en/docs" }
          ],
          "primary": {
            "type": "button",
            "label": "Get Started",
            "href": "/en/quickstart"
          }
        },
        "groups": [
          {
            "group": "Getting started",
            "pages": ["en/overview", "en/quickstart", "en/development"]
          }
        ]
      },
      {
        "language": "es",
        "banner": {
          "content": "🚀 ¡La versión 2.0 ya está disponible! Consulta nuestro [registro de cambios](/es/changelog).",
          "dismissible": true
        },
        "footer": {
          "socials": {
            "x": "https://x.com/mintlify"
          },
          "links": [
            {
              "header": "Recursos",
              "items": [
                { "label": "Documentación", "href": "/es/docs" },
                { "label": "Blog", "href": "https://mintlify.com/blog" }
              ]
            }
          ]
        },
        "navbar": {
          "links": [
            { "label": "Documentación", "href": "/es/docs" }
          ],
          "primary": {
            "type": "button",
            "label": "Comenzar",
            "href": "/es/quickstart"
          }
        },
        "groups": [
          {
            "group": "Getting started",
            "pages": ["es/overview", "es/quickstart", "es/development"]
          }
        ]
      }
    ]
  }
}
For automated translations, contact our sales team to discuss solutions.

Nesting

You can nest navigation elements within each other to create complex hierarchies. You must have one root-level parent navigation element such as tabs, groups, or a dropdown. You can nest other types of navigation elements within your primary navigation pattern. Each navigation element can contain one type of child element at each level of your navigation hierarchy. For example, a tab can contain anchors that contain groups, but a tab cannot contain both anchors and groups at the same level.
{
  "navigation": {
    "tabs": [
      {
        "tab": "Documentation",
        "anchors": [
          {
            "anchor": "Guides",
            "icon": "book-open",
            "pages": ["quickstart", "tutorial"]
          },
          {
            "anchor": "API Reference",
            "icon": "code",
            "pages": ["api/overview", "api/endpoints"]
          }
        ]
      },
      {
        "tab": "Resources",
        "groups": [
          {
            "group": "Help",
            "pages": ["support", "faq"]
          }
        ]
      }
    ]
  }
}
Breadcrumbs display the full navigation path at the top of pages. Some themes have breadcrumbs enabled by default and others do not. You can control whether breadcrumbs display on your site using the styling property in your docs.json.
"styling": {
  "eyebrows": "breadcrumbs"
}

Interaction configuration

Control how users interact with navigation elements using the interaction property in your docs.json.

Enable auto-navigation for groups

When a user expands a navigation group, some themes automatically navigate to the first page in the group. You can override a theme’s default behavior using the drilldown option.
  • Set to true to force automatic navigation to the first page when a user selects a navigation group.
  • Set to false to prevent navigation and only expand or collapse the group when a user selects a navigation group.
  • Leave unset to use the theme’s default behavior.
"interaction": {
  "drilldown": true  // Force navigation to first page when a user expands a dropdown
}