v1
latestOpenAPI 3.0.12026-07-268028223.9 KBTrusts
List trusts
List all trusts owned by a household. Supports filtering by name and updated_since.
get/v1/households/{household_id}/trusts
Query parameters
pageinteger
Page number
per_pageinteger
Items per page (1-100, default: 25). Values over 100 will be clamped to 100.
namestring
Filter by trust name (prefix/full-text match, not arbitrary substring)
updated_sincestring
Filter by last updated datetime (ISO8601)
Response
successful
Example response
{
"data": [
{
"id": "abc123xyz",
"book_id": "book123xyz",
"household_id": "household123xyz",
"name": "Smith Family Trust",
"tax_id": "12-3456789"
}
],
"pagination": {
"current_page": 1,
"total_pages": 10,
"total_count": 100,
"per_page": 25
}
}