Preview The API contract as designed. The authenticated endpoint and the
PDF will-renderer ship in a later slice; the shape below is the target.
FOR WILL-WRITERS, FIRMS & INTEGRATORS
Send INHERIT JSON, get back a finished PDF will.
Post a will as portable INHERIT v2 data and receive a print-ready PDF — sections, gifts and attestation pages laid out — saved or emailed wherever you need it. One endpoint; the will model is the open standard's, not ours.
POST /api/v1/wills/render
{
"inherit_version": "2.0",
"estate": {
"domicile": "GB-EAW",
"will_type": "secular",
"testator": { "Person": "Daniel Hartley" },
"bequests": [
{
"Bequest": {
"asset": { "RealPropertyAsset": "12 Alma Road, Bristol" },
"beneficiary": { "Person": "Daniel Hartley" }
}
},
{
"Bequest": {
"amount": "GBP 20000",
"beneficiary": { "Organisation": "Cancer Research UK" }
}
}
],
"executors": [{ "Role": "Marcus Hartley" }]
},
"output": "pdf"
} 200 OK application/pdf
{
"id": "will_8f2a…",
"status": "rendered",
"format": "pdf",
"pages": 4,
"url": "https://…/wills/8f2a/will.pdf",
"conformance": {
"standard": "INHERIT v2",
"valid": true,
"interpreted_for": "GB-EAW"
}
} Standard in, standard out
Input validates as INHERIT v2 before anything renders — invalid input returns field-level errors, never a silent failure.
Print-ready
Sections and attestation pages laid out for signing — the same renderer behind /convert's “PDF will” target.
Yours to move
Every will you send stays portable INHERIT data — export it, or open it in any conforming tool, any time.