Get county probate details
curl --request GET \
--url https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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>"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found."
}
}Probate Reference
Get county probate details
Retrieve full probate court details for a county including fees, forms, hours, and filing information.
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>'import requests
url = "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/probate/states/{state_code}/counties/{county_slug}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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>"
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found."
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Required string length:
2URL-friendly county name (e.g., cache-county).
Response
Full county probate details.
Show child attributes
Show child attributes
⌘I

