mirrored listing x402 eip155:8453

Generates an llms

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.

Do you run api.ozdreamtools.de? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
updated

Provider

api.ozdreamtools.de · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x4Dd5E59475A55f1C2c0816469600663cb74cC1Dc",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "100000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "optional": [
            {
              "title": "Impressum",
              "url": "https://example.de/impressum"
            }
          ],
          "pages": [
            {
              "description": "Überblick",
              "section": "Kern",
              "title": "Startseite",
              "url": "https://example.de/"
            },
            {
              "section": "Kern",
              "title": "Produkt",
              "url": "https://example.de/produkt"
            }
          ],
          "summary": "Wir bauen Werkzeuge für das Agent-Web.",
          "title": "Beispiel GmbH"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "entries": 3,
          "llms_txt": "# Beispiel GmbH\n\n> Wir bauen Werkzeuge für das Agent-Web.\n\n## Kern\n\n- [Startseite](https://example.de/): Überblick\n- [Produkt](https://example.de/produkt)\n\n## Optional\n\n- [Impressum](https://example.de/impressum)\n",
          "note": "…",
          "sections": 2
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "info": {
                  "description": "Optional prose between summary and sections (no headings)",
                  "type": "string"
                },
                "optional": {
                  "description": "Pages for the dedicated Optional section",
                  "items": {
                    "type": "object"
                  },
                  "type": "array"
                },
                "pages": {
                  "description": "Pages, grouped by 'section'",
                  "items": {
                    "properties": {
                      "description": {
                        "type": "string"
                      },
                      "section": {
                        "type": "string"
                      },
                      "title": {
                        "type": "string"
                      },
                      "url": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "type": "array"
                },
                "summary": {
                  "description": "Short summary (blockquote)",
                  "type": "string"
                },
                "title": {
                  "description": "Project or website name (the single H1)",
                  "type": "string"
                }
              },
              "required": [
                "title",
                "pages"
              ]
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.ozdreamtools.de/api/llmstxt/generate"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.ozdreamtools.de/api/llmstxt/generate");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.ozdreamtools.de/api/llmstxt/generate")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/3601.json, and this resource appears in /discovery/resources and /discovery/search.