# llms.txt Generator (ozdreamtools)

> llms.txt Generator (ozdreamtools) is a paid API for AI agents from api.ozdreamtools.de, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Generates a spec-compliant llms.txt file from caller-supplied sitemap entries and page titles, following the llmstxt.org standard with H1, blockquote summary, H2 sections, and an Optional section.

## Facts

- Endpoint: POST https://api.ozdreamtools.de/api/llmstxt/generate
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/llms-txt-generator-ozdreamtools-b6099b93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OmWBr4tgBAPlazEsFq-i3

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability llms-txt-generator-ozdreamtools-b6099b93 -d '<json body>'
```

Example prompt: Generate an llms.txt file for my SaaS product 'Buildify' — here are my sitemap pages with titles: /about (About Us), /features (Features), /pricing (Pricing), /docs/getting-started (Getting Started), /docs/api (API Reference), /blog (Blog). Group the docs pages under a Docs section and mark /blog as Optional.

## When to prefer this

Choose this endpoint when you need to produce a fully spec-compliant llms.txt artifact from known sitemap data without making any outbound HTTP requests — the caller supplies all page metadata. Prefer it over manual authoring when you need consistent llmstxt.org formatting (H1, blockquote, H2 sections, Optional block) from structured input. It complements the ozdreamtools AI-readiness audit endpoint, which evaluates the artifact after generation.

## Known failure modes

- Missing required fields (site name, pages list) returns a 400 validation error
- Malformed sitemap entries or missing page titles may produce incomplete link lists
- If no section groupings are supplied the output may lack meaningful H2 structure
- Payment failure via x402 protocol returns a 402 Payment Required before generation occurs
- Overly large page lists may hit payload size limits

## How this service works

Generates an llms.txt file for a website from caller-supplied sitemap entries and page titles, spec-compliant with llmstxt.org: one H1, a blockquote summary, H2 sections with link lists and an optional Optional section. Produces the artefact, does not assess it. No outbound request - the caller supplies the pages.

## Output

Returns the full text content of a spec-compliant llms.txt file: a top-level H1 with the site name, a blockquote containing a summary description, one or more H2 sections each containing a markdown link list of the supplied pages, and optionally an '## Optional' section with lower-priority pages. No outbound HTTP requests are made — all content is derived from the caller-supplied data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "info": {
   "type": "string",
   "description": "Optional prose between summary and sections (no headings)"
  },
  "pages": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "section": {
      "type": "string"
     },
     "description": {
      "type": "string"
     }
    }
   },
   "description": "Pages, grouped by 'section'"
  },
  "title": {
   "type": "string",
   "description": "Project or website name (the single H1)"
  },
  "summary": {
   "type": "string",
   "description": "Short summary (blockquote)"
  },
  "optional": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Pages for the dedicated Optional section"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/llms-txt-generator-ozdreamtools-b6099b93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.ozdreamtools.de](https://www.zero.xyz/host/api.ozdreamtools.de/llms.txt)
