> ## Documentation Index
> Fetch the complete documentation index at: https://api.hellosunset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get county probate details

> Retrieve full probate court details for a county including fees, forms, hours, and filing information.



## OpenAPI

````yaml GET /probate/states/{state_code}/counties/{county_slug}
openapi: 3.1.0
info:
  title: Sunset API
  description: >
    Estate and probate management platform API. Manage cases, track assets,
    handle bank accounts, and navigate probate proceedings across all US states
    and counties.


    ## Key Features


    - **Full Estate Lifecycle** — Case creation through final asset distribution

    - **Identity Verification** — Verify deceased (SSDI, vital records) and
    executor (government ID, KBA) identity

    - **Real Estate Valuations** — Automated property valuations with comparable
    sales and lien tracking

    - **Communication Tools** — Recorded phone calls, emails, faxes, and online
    notarization

    - **Probate Reference Data** — Requirements for all 50 states, DC, and US
    territories

    - **Multi-Estate Management** — Pro and Enterprise tiers for managing
    multiple cases


    ## API Quality


    - **Idempotency** — `Idempotency-Key` header on all POST endpoints to
    prevent duplicate operations

    - **Rate Limiting** — Tiered rate limits (Pro: 300/min, Enterprise:
    1,000/min)

    - **Conditional Requests** — ETag support with `If-None-Match` and
    `If-Match` headers

    - **Request Tracing** — `X-Request-Id` header on every response

    - **Cursor Pagination** — Optional cursor-based pagination for high-volume
    resources

    - **JSON Merge Patch** — All PATCH endpoints use JSON Merge Patch semantics
    (RFC 7396)
  version: 1.0.0
  contact:
    name: Sunset API Support
servers:
  - url: https://api.example.com/v1
    description: Production
  - url: https://staging-api.example.com/v1
    description: Staging
security: []
tags:
  - name: Cases
    description: Estate/probate case management
  - name: Deceased
    description: Deceased person information
  - name: Executor
    description: Estate executor information
  - name: Authority
    description: Authority verification
  - name: EIN
    description: Employer Identification Number
  - name: Financial Accounts
    description: Estate financial accounts and assets
  - name: Documents
    description: Case document management
  - name: Searches
    description: Asset and background searches
  - name: Persons
    description: Interested persons and beneficiaries
  - name: Goals
    description: Estate management goals
  - name: Bank Accounts
    description: Bank account management
  - name: Signers
    description: Bank account holders and signers
  - name: Transactions
    description: Bank account transactions
  - name: Recurring Payments
    description: Recurring payments and deposits
  - name: Account Beneficiaries
    description: POD/TOD beneficiary designations
  - name: Statements
    description: Bank account statements
  - name: Balance History
    description: Historical balance snapshots
  - name: Probate Reference
    description: State and county probate reference data
  - name: Probate Forms
    description: State-level probate forms
  - name: Probate Case
    description: Case-level probate tracking
  - name: Probate Deadlines
    description: Probate deadlines and due dates
  - name: Probate Filings
    description: Court filings
  - name: Creditor Claims
    description: Creditor claims against the estate
  - name: Distributions
    description: Beneficiary distributions
  - name: Pro Users
    description: Pro user multi-estate management
  - name: Collaborators
    description: Multi-user collaboration and estate sharing
  - name: Closure
    description: Estate closure steps and status tracking
  - name: Institution Contacts
    description: Financial institution contact information and departments
  - name: Phone Calls
    description: Twilio-powered phone calls with recording and summarization
  - name: Emails
    description: Email tool for sending forms and attachments
  - name: Notarization
    description: DocuSign-powered online notarization
  - name: Faxes
    description: One-click fax sending with receipts
  - name: Identity Verification
    description: Verify deceased and executor identity
  - name: Real Estate Valuations
    description: Automated property valuations and tax assessments
  - name: Life Insurance
    description: Life insurance policies and claims
  - name: Credit Cards & Debts
    description: Credit cards, loans, and debt management
  - name: Retirement Accounts
    description: 401(k), IRA, pension, and retirement account management
  - name: Investment Accounts
    description: Brokerage, stocks, bonds, and investment accounts
  - name: Real Estate Properties
    description: Real estate ownership, titles, and property management
  - name: Unclaimed Property
    description: Unclaimed property search and claims
  - name: Vehicles
    description: Vehicles, boats, and titled property
  - name: Business Ownership
    description: Business entities, ownership interests, and succession
paths:
  /probate/states/{state_code}/counties/{county_slug}:
    parameters:
      - name: state_code
        in: path
        required: true
        schema:
          type: string
          minLength: 2
          maxLength: 2
        example: UT
      - name: county_slug
        in: path
        required: true
        schema:
          type: string
        description: URL-friendly county name (e.g., cache-county).
        example: cache-county
    get:
      tags:
        - Probate Reference
      summary: Get county probate details
      description: >-
        Retrieve full probate court details for a county including fees, forms,
        hours, and filing information.
      operationId: getProbateCounty
      responses:
        '200':
          description: Full county probate details.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/ProbateCounty'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    ProbateCounty:
      type: object
      properties:
        county_slug:
          type: string
          example: cache-county
        county_name:
          type: string
          example: Cache County
        state_code:
          type: string
          example: UT
        court_name:
          type: string
          example: First District Court, Cache County
        court_address:
          $ref: '#/components/schemas/Address'
        court_phone:
          type:
            - string
            - 'null'
          example: '+11112223333'
        court_fax:
          type:
            - string
            - 'null'
        court_email:
          type:
            - string
            - 'null'
          format: email
        court_website:
          type:
            - string
            - 'null'
          format: uri
          example: https://www.utcourts.gov/court/dist/1
        clerk_name:
          type:
            - string
            - 'null'
        clerk_title:
          type:
            - string
            - 'null'
          example: Clerk of Court
        court_hours:
          type: object
          properties:
            monday_friday:
              type: string
              example: 8:00 AM - 5:00 PM
            saturday:
              type:
                - string
                - 'null'
              example: null
            sunday:
              type:
                - string
                - 'null'
              example: null
            notes:
              type:
                - string
                - 'null'
              example: Closed on state holidays
        filing_fees:
          type: object
          properties:
            probate_petition:
              type:
                - number
                - 'null'
              format: double
              example: 360
            small_estate_affidavit:
              type:
                - number
                - 'null'
              format: double
              example: 75
            letters_testamentary:
              type:
                - number
                - 'null'
              format: double
              example: 25
            letters_of_administration:
              type:
                - number
                - 'null'
              format: double
              example: 25
            certified_copy:
              type:
                - number
                - 'null'
              format: double
              example: 4
            will_filing:
              type:
                - number
                - 'null'
              format: double
              example: 15
            bond_filing:
              type:
                - number
                - 'null'
              format: double
            final_accounting:
              type:
                - number
                - 'null'
              format: double
            additional_fees:
              type: array
              items:
                type: object
                properties:
                  description:
                    type: string
                  amount:
                    type: number
                    format: double
        accepted_payment_methods:
          type: array
          items:
            type: string
            enum:
              - cash
              - check
              - credit_card
              - money_order
              - online
          example:
            - cash
            - check
            - credit_card
        electronic_filing_available:
          type: boolean
          example: true
        electronic_filing_url:
          type:
            - string
            - 'null'
          format: uri
        local_rules:
          type: array
          items:
            type: string
          example:
            - All filings must include a cover sheet
        required_forms:
          type: array
          items:
            type: object
            properties:
              form_name:
                type: string
              form_number:
                type:
                  - string
                  - 'null'
              form_url:
                type:
                  - string
                  - 'null'
                format: uri
              description:
                type: string
              required_for:
                type: array
                items:
                  type: string
        average_processing_time:
          type:
            - string
            - 'null'
          example: 6-12 months
        hearing_scheduling:
          type: object
          properties:
            method:
              type: string
              enum:
                - in_person
                - virtual
                - hybrid
              example: hybrid
            scheduling_url:
              type:
                - string
                - 'null'
              format: uri
            typical_wait_time:
              type:
                - string
                - 'null'
              example: 4-6 weeks
        local_attorney_referral:
          type:
            - string
            - 'null'
          example: https://www.utahbar.org/lawyer-referral
        notes:
          type:
            - string
            - 'null'
    Address:
      type: object
      properties:
        address1:
          type: string
          example: 123 Main Street
        address2:
          type:
            - string
            - 'null'
          example: null
        city:
          type: string
          example: Salt Lake City
        state:
          type: string
          minLength: 2
          maxLength: 2
          example: UT
        zip:
          type: string
          pattern: ^\d{5}(-\d{4})?$
          example: '84101'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              example: validation_error
            message:
              type: string
              example: The request body contains invalid fields.
            details:
              type: array
              items:
                type: object
                properties:
                  field:
                    type: string
                  message:
                    type: string
  responses:
    NotFound:
      description: Resource not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: not_found
              message: The requested resource was not found.

````