Generates an llms.txt file for a website from caller-supplied sitemap entries an
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
439 msmedian answer time
$0.1listed price per call
$0.1price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.ozdreamtools.de/api/llmstxt/generate
| Category | Everything else |
|---|---|
| Provider host | api.ozdreamtools.de |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.1 | 439 ms |
Example input (from the provider)
{
"body": {
"optional": [
{
"title": "Impressum",
"url": "https://example.de/impressum"
}
],
"pages": [
{
"description": "\u00dcberblick",
"section": "Kern",
"title": "Startseite",
"url": "https://example.de/"
},
{
"section": "Kern",
"title": "Produkt",
"url": "https://example.de/produkt"
}
],
"summary": "Wir bauen Werkzeuge f\u00fcr das Agent-Web.",
"title": "Beispiel GmbH"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}