Support Role
Funeral home support docs
This page is a support reference for the funeral-home surfaces. If you are a funeral home evaluating the offer, start at /funeral-homes/partners for the public hub, proof page, widget flow, backlink workflow, and claim or edit lane.
What this page is for
- API reference for searching funeral homes and fetching profile detail.
- Directory URL patterns for state, city, and funeral-home listing pages.
- Support material that backs up the public partner path instead of replacing it.
Search Funeral Homes
GET https://api.officialobituary.com/api/funeral-homes?state=tx&city=houston&limit=10 Query parameters:
state(string, 2-letter code, e.g. "tx")city(string, e.g. "houston")services(comma-separated: burial,cremation,memorial,pre-planning)limit(integer, default 20, max 100)offset(integer, for pagination)
Get Funeral Home Profile
GET https://api.officialobituary.com/api/funeral-homes/{state}/{city}/{slug} Returns full profile with: name, address, phone, services, pricing, reviews, linked obituaries.
Directory Pages
- National: https://officialobituary.com/funeral-homes/
- By state pattern:
https://officialobituary.com/funeral-homes/{state}/(example: Texas) - By city pattern:
https://officialobituary.com/funeral-homes/{state}/{city}/(example: Houston, TX) - Individual pattern:
https://officialobituary.com/funeral-homes/{state}/{city}/{slug}/
Examples
Find funeral homes in Houston TX:
GET https://api.officialobituary.com/api/funeral-homes?state=tx&city=houston Find funeral homes offering cremation in California:
GET https://api.officialobituary.com/api/funeral-homes?state=ca&services=cremation