Use this file to discover all available pages before exploring further.
Mintlify components let you build rich, interactive documentation pages using MDX. Here are some commonly used ones.See the components overview in the Mintlify documentation for a complete list.
Use callouts to draw attention to important information.
A Note is for general information that helps the reader.
A Tip highlights a helpful shortcut or best practice.
A Warning flags something that could cause problems.
An Info callout provides supplementary context.
<Note>A **Note** is for general information that helps the reader.</Note><Tip>A **Tip** highlights a helpful shortcut or best practice.</Tip><Warning>A **Warning** flags something that could cause problems.</Warning><Info>An **Info** callout provides supplementary context.</Info>
<Columns cols={2}> <Card title="API Reference" icon="terminal" href="/api-reference/introduction"> Auto-generated docs from your OpenAPI spec. </Card> <Card title="Quickstart" icon="rocket" href="/quickstart"> Get your docs running in three steps. </Card></Columns>
Use <Columns cols={N}> to control the grid width. Cards without href render as informational panels.
<Steps> <Step title="Install the package"> ```bash npm install my-package ``` </Step> <Step title="Initialize"> Run the init command in your project root. </Step> <Step title="You're ready"> Start using the package in your code. </Step></Steps>
Accordions collapse content behind a toggle — useful for FAQs or optional detail.
What does this product do?
A brief answer to the first question. Keep it concise.
How is pricing calculated?
Another answer here. Use as much space as you need.
<AccordionGroup> <Accordion title="What does this product do?"> A brief answer to the first question. </Accordion> <Accordion title="How is pricing calculated?"> Another answer here. </Accordion></AccordionGroup>