API · x402

Lay out a family tree as a descendant, ancestor (pedigree) or hourglass chart from peop…

Lay out a family tree as a descendant, ancestor (pedigree) or hourglass chart from people+families JSON or a GEDCOM file (up to 400 people, 10 generations) and return the computed chart as JSON: every person box with generation, x/y/width/height, formatted da…

by Quietforge Docs API · verified provider · updated 2026-09-22

What it does

Lay out a family tree as a descendant, ancestor (pedigree) or hourglass chart from people+families JSON or a GEDCOM file (up to 400 people, 10 generations) and return the computed chart as JSON: every person box with generation, x/y/width/height, formatted dates (living people privatised by default), spouse and parent edges, and the chart bounds. A verifier proves no boxes overlap, every child is linked to its parents and every person in the requested subtree appears exactly once. Draw it in any renderer, or use the PDF route.

Tags: genealogy · family-tree · gedcom · layout · chart

Use with an agent

  1. Discover. Agents find this listing with GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP tool search_resources, or /discovery/resources.
  2. Inspect. Fetch /resources/15983.json for the price and payment options.
  3. Pay. Call GET https://qf-api.quietforge-studio.workers.dev/v1/familytree. The provider answers 402 with its payment requirements. An x402 client signs one of the options below and retries with PAYMENT-SIGNATURE.
  4. Execute. The provider returns 200 with the data. Agent Bazaar is not in the request path and never sees your payment.

For humans

You don't need an account or an API key; you need a wallet holding a small amount of USDC on Base, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.

Pricing & payment

Price
$0.02 / request
Protocol
x402 v2
Auth
No account or API key. Pay per request.
Networks
Base

x402 payment requirements

SchemeNetworkAssetAmountPay toTimeout
exactBase
eip155:8453
USDC$0.020x3F5115236f25618c16021E983acaAF2CAaa1A35e300s
accepts[] (raw JSON)
[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x3F5115236f25618c16021E983acaAF2CAaa1A35e",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "20000",
    "amountUsd": 0.02,
    "maxTimeoutSeconds": 300
  }
]

Schemas

Output schema (JSON Schema)
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "chart": {
      "type": "string"
    },
    "root": {
      "type": "string"
    },
    "generations": {
      "type": "integer"
    },
    "people": {
      "type": "integer"
    },
    "couples": {
      "type": "integer"
    },
    "nodes": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "edges": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "width": {
      "type": "number"
    },
    "height": {
      "type": "number"
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "verified": {
      "type": "boolean"
    },
    "elapsed_ms": {
      "type": "integer"
    }
  },
  "required": [
    "title",
    "chart",
    "people",
    "nodes",
    "edges"
  ]
}
Example shape — generated from the schema, not a captured live response
{
  "title": "string",
  "chart": "string",
  "root": "string",
  "generations": 0,
  "people": 0,
  "couples": 0,
  "nodes": [
    {}
  ],
  "edges": [
    {}
  ],
  "width": 0,
  "height": 0,
  "warnings": [
    "string"
  ],
  "verified": true,
  "elapsed_ms": 0
}

Examples

curl
curl "https://qf-api.quietforge-studio.workers.dev/v1/familytree"
# -> 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");
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")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Details

Provider
Quietforge Docs API
Endpoint
https://qf-api.quietforge-studio.workers.dev/v1/familytree
Machine-readable
/resources/15983.json