> ## 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 valuation details

> Retrieve detailed property valuation including comparable sales, tax assessment data, lien information, and equity estimate.



## OpenAPI

````yaml GET /cases/{case_id}/real-estate-valuations/{valuation_id}
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:
  /cases/{case_id}/real-estate-valuations/{valuation_id}:
    parameters:
      - $ref: '#/components/parameters/CaseId'
      - name: valuation_id
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Real Estate Valuations
      summary: Get valuation details
      description: >-
        Retrieve detailed property valuation including comparable sales, tax
        assessment data, lien information, and equity estimate.
      operationId: getRealEstateValuation
      responses:
        '200':
          description: Valuation details.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/RealEstateValuation'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    CaseId:
      name: case_id
      in: path
      required: true
      schema:
        type: string
      description: Unique case identifier (ULID format).
      example: 01K5WF06MJ6T99HRYE78AN7XM8
  schemas:
    RealEstateValuation:
      type: object
      properties:
        id:
          type: string
          example: 01K9RE01AJ0T66HRYE78AN7WWW
        financial_account_id:
          type: string
          description: Reference to the financial account of type 'property'.
          example: 01K5XA09BJ4T11HRYE78AN7ABC
        property_address:
          $ref: '#/components/schemas/Address'
        property_type:
          type: string
          enum:
            - single_family
            - multi_family
            - condo
            - townhouse
            - mobile_home
            - vacant_land
            - commercial
            - farm_ranch
            - mixed_use
            - other
          example: single_family
        estimated_value:
          type:
            - number
            - 'null'
          format: double
          description: Current estimated market value.
          example: 385000
        valuation_source:
          type: string
          enum:
            - automated_avm
            - county_assessor
            - appraisal
            - comparative_market_analysis
            - owner_estimate
            - tax_assessment
          description: How the value was determined.
          example: automated_avm
        valuation_date:
          type:
            - string
            - 'null'
          format: date
          description: Date the valuation was performed.
          example: '2025-10-20'
        confidence_score:
          type:
            - number
            - 'null'
          format: double
          description: >-
            Confidence score of the valuation (0.0 to 1.0). Only available for
            automated valuations.
          example: 0.87
        tax_assessed_value:
          type:
            - number
            - 'null'
          format: double
          description: County tax assessed value.
          example: 310000
        tax_year:
          type:
            - integer
            - 'null'
          example: 2025
        annual_property_tax:
          type:
            - number
            - 'null'
          format: double
          example: 3250
        lot_size_sqft:
          type:
            - number
            - 'null'
          format: double
          example: 8500
        living_area_sqft:
          type:
            - number
            - 'null'
          format: double
          example: 2200
        bedrooms:
          type:
            - integer
            - 'null'
          example: 4
        bathrooms:
          type:
            - number
            - 'null'
          format: double
          description: Full and half baths (e.g., 2.5).
          example: 2.5
        year_built:
          type:
            - integer
            - 'null'
          example: 1998
        parcel_number:
          type:
            - string
            - 'null'
          description: County parcel/APN number.
          example: 12-345-678-9
        zoning:
          type:
            - string
            - 'null'
          example: Residential R-1
        mortgage_balance:
          type:
            - number
            - 'null'
          format: double
          description: Outstanding mortgage balance, if known.
          example: 145000
        equity_estimate:
          type:
            - number
            - 'null'
          format: double
          description: Estimated equity (estimated_value - mortgage_balance).
          example: 240000
        liens:
          type: array
          items:
            type: object
            properties:
              lien_type:
                type: string
                enum:
                  - mortgage
                  - home_equity
                  - tax_lien
                  - mechanics_lien
                  - judgment_lien
                  - hoa_lien
                  - other
              holder:
                type: string
              amount:
                type: number
                format: double
              recorded_date:
                type:
                  - string
                  - 'null'
                format: date
        comparable_sales:
          type: array
          description: Recent comparable property sales used in the valuation.
          items:
            type: object
            properties:
              address:
                type: string
              sale_price:
                type: number
                format: double
              sale_date:
                type: string
                format: date
              living_area_sqft:
                type: number
                format: double
              distance_miles:
                type: number
                format: double
        status:
          type: string
          enum:
            - pending
            - completed
            - failed
            - stale
          description: >-
            Valuation status. 'stale' indicates the valuation is older than 90
            days.
          example: completed
        notes:
          type:
            - string
            - 'null'
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
    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:
    Forbidden:
      description: Insufficient permissions for this case or resource.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: forbidden
              message: You do not have permission to access this resource.
    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.

````