REST API v1 · Stable

Integrate Iluuna Into Your Funeral Home Software

Create family workspaces, track estate progress, and receive aftercare events using a simple REST API. One call to hand off a family — everything else runs automatically.

POST /api/v1/estates
curl -X POST https://app.iluuna.com/api/v1/estates \
  -H "Authorization: Bearer ak_live_..." \
  -d '{ "deceased_name": "James R. Wilson",
         "family_contact_email": "sarah@example.com" }'
{ "estate_id": "3c4e9a...", "status": "pending_activation",
  "activation_url": "https://app.iluuna.com/invite/tok_..." }

Everything you need to integrate

Simple primitives with predictable behaviour.

Create workspaces

One API call to create a secure, branded family portal and send the activation link to the executor / contact person.

Track progress

Poll estate status to get task completion percentage, health score, and last activity timestamp.

Receive events

Subscribe to webhooks for estate lifecycle events. All payloads are HMAC-signed for security.

Code examples

Request + response for every endpoint.

POST /api/v1/estates

curl -X POST https://app.iluuna.com/api/v1/estates \
  -H "Authorization: Bearer ak_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "deceased_name": "James R. Wilson",
    "family_contact_name": "Sarah Wilson",
    "family_contact_email": "sarah@example.com",
    "date_of_death": "2026-06-01"
  }'

201 Created

{
  "estate_id": "3c4e9a2b-f18d-4bc7-8e2a-1a7f6c5d4e3b",
  "status": "pending_activation",
  "activation_url": "https://app.iluuna.com/invite/tok_..."
}

Integration use cases

Iluuna connects to the tools you already use.

Funeral Home Software

Connect Passare, FrontRunner, FDMS, or any case management system via REST or low-code automation.

Create a family workspace automatically when a case is opened in your software.

Zapier / Make / n8n

No-code integrations using our webhooks and REST endpoints with thousands of app connectors.

Trigger a Slack notification when a family accepts their invitation.

Custom Intake Forms

Build your own intake flow and pass family data to Iluuna at case creation via the API.

Submit funeral arrangement forms directly as new family workspaces.

Aftercare Automation

Subscribe to lifecycle events to automate follow-up, reporting, and CRM updates.

Archive CRM records automatically when estate.completed fires.

Webhook events

Subscribe to any combination of events. All payloads are signed with HMAC-SHA256.

EventDescription
estate.createdA new family workspace was created via API or dashboard
estate.activatedThe family executor accepted their invitation
estate.progress_updatedEstate task completion percentage changed
estate.completedAll required tasks have been marked complete
family_contact.acceptedA family member accepted their invitation
collaborator.joinedA lawyer, advisor, or accountant joined the estate
document.uploadedA document was added to the estate vault
task.completedAn individual task was marked complete
webhook.testSent when you trigger a test delivery from the dashboard

Security by design

Hashed API keys

Bearer token auth. Keys are SHA-256 hashed at rest — we never store your raw key. Revoke instantly from your dashboard.

Signed webhooks

Every payload includes X-Iluuna-Signature. Verify with HMAC-SHA256 before processing to prevent spoofing.

Reliable delivery

3 automatic retries with exponential backoff. Delivery logs and manual retrigger in Settings → Integrations.

Ready to integrate?

Create a free Iluuna account, generate an API key in Settings → Integrations, and make your first request in minutes.