Skip to main content
GET
/
probate
/
states
/
{state_code}
/
counties
/
{county_slug}
Get county probate details
curl --request GET \
  --url https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "county_slug": "cache-county",
    "county_name": "Cache County",
    "state_code": "UT",
    "court_name": "First District Court, Cache County",
    "court_address": {
      "address1": "123 Main Street",
      "address2": null,
      "city": "Salt Lake City",
      "state": "UT",
      "zip": "84101"
    },
    "court_phone": "+11112223333",
    "court_fax": "<string>",
    "court_email": "jsmith@example.com",
    "court_website": "https://www.utcourts.gov/court/dist/1",
    "clerk_name": "<string>",
    "clerk_title": "Clerk of Court",
    "court_hours": {
      "monday_friday": "8:00 AM - 5:00 PM",
      "saturday": null,
      "sunday": null,
      "notes": "Closed on state holidays"
    },
    "filing_fees": {
      "probate_petition": 360,
      "small_estate_affidavit": 75,
      "letters_testamentary": 25,
      "letters_of_administration": 25,
      "certified_copy": 4,
      "will_filing": 15,
      "bond_filing": 123,
      "final_accounting": 123,
      "additional_fees": [
        {
          "description": "<string>",
          "amount": 123
        }
      ]
    },
    "accepted_payment_methods": [
      "cash",
      "check",
      "credit_card"
    ],
    "electronic_filing_available": true,
    "electronic_filing_url": "<string>",
    "local_rules": [
      "All filings must include a cover sheet"
    ],
    "required_forms": [
      {
        "form_name": "<string>",
        "form_number": "<string>",
        "form_url": "<string>",
        "description": "<string>",
        "required_for": [
          "<string>"
        ]
      }
    ],
    "average_processing_time": "6-12 months",
    "hearing_scheduling": {
      "method": "hybrid",
      "scheduling_url": "<string>",
      "typical_wait_time": "4-6 weeks"
    },
    "local_attorney_referral": "https://www.utahbar.org/lawyer-referral",
    "notes": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

state_code
string
required
Required string length: 2
county_slug
string
required

URL-friendly county name (e.g., cache-county).

Response

Full county probate details.

data
object