curl "https://api.example.com/v1/probate/states/UT"```
The response includes:
- **Probate types available** (formal, informal, small estate affidavit, etc.)
- **Thresholds** (small estate dollar limits)
- **Creditor claim periods** and notice requirements
- **Bond requirements** and waiver rules
- **Executor compensation** methods and rates
- **Spousal rights** (elective share, homestead, family allowance)
- **Intestate succession** rules
- **Will requirements** (witnesses, holographic acceptance, etc.)
- **Tax information** (state estate tax, inheritance tax)
### Find the right county court
```bash
curl "https://api.example.com/v1/probate/states/UT/counties/cache-county"```
The response includes:
- **Court contact info** (address, phone, email, website)
- **Filing fees** for every probate action
- **Accepted payment methods**
- **Electronic filing** availability and URL
- **Required forms** with download links
- **Average processing time**
- **Hearing scheduling** details
### Get required forms
```bash
curl "https://api.example.com/v1/probate/states/UT/forms?required_for=informal_probate"```
## Tracking Probate for a Case
### 1. Set up probate case info
```bash
curl -X PUT "https://api.example.com/v1/cases/{case_id}/probate" \
-H "Content-Type: application/json" \
-d '{
"state_code": "UT",
"county_slug": "cache-county",
"probate_type": "informal",
"status": "not_filed",
"attorney_name": "John Johnson",
"attorney_firm": "Johnson & Associates",
"attorney_phone": "+11112223333",
"attorney_email": "john@johnsonlaw.com"
}'