Skip to main content
GET
/
probate
/
states
List states
curl --request GET \
  --url https://api.example.com/v1/probate/states \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "state_code": "UT",
      "state_name": "Utah",
      "probate_court_name": "District Court",
      "upc_adopted": true,
      "community_property_state": true,
      "small_estate_threshold": 123,
      "attorney_required": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

upc_adopted
boolean

Filter by UPC adoption.

community_property_state
boolean
attorney_required
boolean

Response

200 - application/json

List of states with probate summaries.

data
object[]