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

# AI & LLM Integration

The documentation site offers machine-friendly access for AI agents and LLMs: the whole set as one file, or any page as raw markdown.

## Full documentation endpoint

One request returns the entire documentation set as plain text:

```bash theme={null}
curl https://docs.tape.network/llms-full.txt
```

Each page appears with its title and address, followed by its content:

```text Excerpt theme={null}
# Tapes
Source: https://docs.tape.network/protocol/architecture/tapes

Every byte stored on Tapedrive lives in a tape. A tape is a prepaid
reservation: an amount of space, for a length of time measured in epochs...
```

A shorter index of every page lives at `/llms.txt`.

## Individual page markdown

Two ways to fetch one page as markdown.

### Direct URL

Append `.md` to any page's address:

```bash theme={null}
curl https://docs.tape.network/protocol/architecture/tapes.md
```

Works across every section: `/protocol/quickstart.md`, `/sdks/quickstart.md`, `/tools/cli.md`, and so on.

### Accept header

Content negotiation against the page URL does the same thing:

```bash theme={null}
curl -H "Accept: text/markdown" https://docs.tape.network/protocol/architecture/tapes
```
