Skip to main content

Welcome to the Sunset API

The Sunset API is currently available by invitation only. If you’re interested in integrating with Sunset, please email api_request@hellosunset.com to request access.
The Sunset API gives you programmatic access to the Sunset estate and probate management platform. Whether you’re building an integration for a law firm, a financial advisory practice, or a family office, the API lets you manage every aspect of estate settlement — from the first notification to final asset distribution.

Overview

Sunset handles the complexity of estate administration so your team doesn’t have to. The API covers the full lifecycle:

Case Management

Create cases, record deceased and executor details, verify identities, and track authority documents.

Financial Tracking

Manage bank accounts, transactions, recurring payments, signers, POD/TOD beneficiaries, and statements.

Asset Valuation

Request automated real estate valuations, track liens and mortgages, and monitor equity.

Document Management

Upload death certificates, probate filings, and property reports. Download and share securely.

Probate Navigation

Access probate requirements for all 50 states and every county. Track filings, deadlines, creditor claims, and distributions.

Communication Tools

Make recorded phone calls, send emails with attachments, fax documents, and initiate online notarizations — all with full audit trails.

Who is the API for?

AudienceUse Case
Estate AttorneysAutomate case intake, track probate deadlines, manage court filings
Financial AdvisorsMonitor estate accounts, track distributions, manage beneficiary designations
Trust CompaniesManage multiple estates at scale with Pro multi-estate features
Insurance ProvidersVerify death records, track claims, automate document collection
Family OfficesCoordinate across executors, attorneys, and family members
Software IntegratorsEmbed estate management into existing legal or financial platforms

Base URL

All API requests are made to:
https://api.example.com/v1
A staging environment is available for development and testing:
https://staging-api.example.com/v1

Quick Start

  1. Make your first request:
curl -X GET https://api.example.com/v1/cases
  1. Create a case:
curl -X POST https://api.example.com/v1/cases \
  -H "Content-Type: application/json" \
  -d '{
    "estate_value": "unknown",
    "progress": "just_started",
    "possible_dispute": "no_dispute_expected"
  }'

Response Format

All responses follow a consistent envelope structure: Single resource:
{
  "data": {
    "id": "01K5WF06MJ6T99HRYE78AN7XM8",
    "estate_value": "unknown",
    "progress": "just_started"
  }
}
List of resources:
{
  "data": [
    { "id": "01K5WF06MJ6T99HRYE78AN7XM8", "..." : "..." }
  ],
  "meta": {
    "page": 1,
    "per_page": 25,
    "total_count": 142,
    "total_pages": 6,
    "next_cursor": "eyJpZCI6...",
    "has_more": true
  }
}

Key Features

Identity Verification

Verify the identity of both the deceased (via SSDI lookup, vital records) and the executor (via government ID, knowledge-based authentication). Each verification tracks individual checks and produces a verification level (0–3).

Real Estate Valuations

Request automated property valuations powered by AVM data. Get tax assessments, comparable sales, lien tracking, and equity estimates — all linked to estate financial accounts.

Communication Tools

Place phone calls via Twilio with automatic recording, transcription, and AI summarization. Send emails with document attachments and delivery tracking. Fax documents with one click. Initiate online notarization sessions through DocuSign.

Multi-Estate Management

Pro users can manage up to 50 estates from a single account. Enterprise plans offer unlimited cases with SSO and custom integrations.

Collaboration

Invite attorneys, co-executors, and family members to collaborate on a case with role-based access control and granular permissions.

Next Steps