> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zbdpay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# AI Ingestion

> Understand how to use ZBD Payments with LLMs.

export const PreviewButton = ({children, href}) => {
  return <a href={href} className="text-sm font-medium text-white dark:!text-zinc-950 bg-zinc-900 hover:bg-zinc-700 dark:bg-zinc-100 hover:dark:bg-zinc-300 rounded-full px-3.5 py-1.5 not-prose">
      {children}
    </a>;
};

[docs.zbdpay.com](/) documentation pages are content rich and can be a great source of information for LLMs for AI tools. You can use your documentation to fine-tune a chatbot, answer questions about your product, or use it to generate code.

## /llms.txt

An [industry standard](https://llmstxt.org) that helps general-purpose LLMs index more efficiently (e.g. a sitemap for AI).

Every documentation site automatically hosts a **/llms.txt** file at the root that lists all available pages in your documentation.

<PreviewButton href="https://docs.zbdpay.com/llms.txt">Open llms.txt for docs.zbdpay.com</PreviewButton>

## /llms-full.txt

A markdown file of all your content is automatically available at **/llms-full.txt**.

llms-full.txt contains the entire content of your docs, and is a great way to provide a complete context to AI tools.

<PreviewButton href="https://docs.zbdpay.com/llms-full.txt">Open llms-full.txt for docs.zbdpay.com</PreviewButton>

## .md extension

Add **.md** to an individual documentation page to see a markdown version of that page. Helps load individual pages into AI tools with better token efficiency & inference time.

<PreviewButton href="https://docs.zbdpay.com/get-started.md">Open get-started.md</PreviewButton>
