The same verified chart as print-ready PDFs: 24x36 in and A3 single-sheet posters (chart s
The same verified chart as print-ready PDFs: 24x36 in and A3 single-sheet posters (chart scaled to fill, generation labels, footer), plus US Letter and A4 files with a one-page overview, readable tiles with crop marks and overlap for taping, and an index of every person; classic or elegant typography; zipped with chart.json and returned as base64. Typography, boxes and lines only, no images.
$4.99
price
—
calls / 30d
—
unique payers
2026-09-22
updated
Provider
Quietforge Docs API · verified
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3F5115236f25618c16021E983acaAF2CAaa1A35e",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4990000",
"amountUsd": 4.99,
"maxTimeoutSeconds": 300
}
]Output schema
{
"type": "object",
"properties": {
"title": {
"type": "string"
},
"chart": {
"type": "string"
},
"generations": {
"type": "integer"
},
"people": {
"type": "integer"
},
"style": {
"type": "string"
},
"files": {
"type": "array",
"items": {
"type": "string"
}
},
"pages": {
"type": "object"
},
"content_type": {
"type": "string"
},
"bytes": {
"type": "integer"
},
"content_base64": {
"type": "string"
},
"elapsed_ms": {
"type": "integer"
}
},
"required": [
"title",
"chart",
"people",
"files",
"content_type",
"bytes",
"content_base64"
]
}Example shape (generated from the schema above — not a captured live response)
{
"title": "string",
"chart": "string",
"generations": 0,
"people": 0,
"style": "string",
"files": [
"string"
],
"pages": {},
"content_type": "string",
"bytes": 0,
"content_base64": "string",
"elapsed_ms": 0
}Use it
curl
curl "https://qf-api.quietforge-studio.workers.dev/v1/familytree/pdf" # -> 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/familytree/pdf");
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/familytree/pdf")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/16031.json, and this resource appears in /discovery/resources and /discovery/search.