verified owner x402 eip155:8453

Detect the structure of a book manuscript before typesetting it: the chapter list our engi

Detect the structure of a book manuscript before typesetting it: the chapter list our engine will use (numbered / unnumbered), words and scene breaks per chapter, paragraph count, characters the book font cannot print, and the warnings a full build would raise. Same parser as /v1/typeset, so what you see here is exactly how the book will be divided.

10000 (raw units)
price
calls / 30d
unique payers
2026-09-21
updated

Provider

Quietforge Docs API · verified

Payment (x402 accepts[])

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

Output schema

{
  "type": "object",
  "properties": {
    "words": {
      "type": "integer"
    },
    "chapters": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "paragraphs": {
      "type": "integer"
    },
    "scene_breaks": {
      "type": "integer"
    },
    "missing_glyphs": {
      "type": "string"
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "elapsed_ms": {
      "type": "integer"
    }
  },
  "required": [
    "words",
    "chapters"
  ]
}

Use it

curl

curl "https://qf-api.quietforge-studio.workers.dev/v1/typeset/outline"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://qf-api.quietforge-studio.workers.dev/v1/typeset/outline");
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://qf-api.quietforge-studio.workers.dev/v1/typeset/outline")
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/15741.json, and this resource appears in /discovery/resources and /discovery/search.