List real estate valuations
curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/real-estate-valuations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/v1/cases/{case_id}/real-estate-valuations"
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/cases/{case_id}/real-estate-valuations', 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/cases/{case_id}/real-estate-valuations",
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/cases/{case_id}/real-estate-valuations"
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/cases/{case_id}/real-estate-valuations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/cases/{case_id}/real-estate-valuations")
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": [
{
"id": "01K9RE01AJ0T66HRYE78AN7WWW",
"financial_account_id": "01K5XA09BJ4T11HRYE78AN7ABC",
"property_address": {
"address1": "123 Main Street",
"address2": null,
"city": "Salt Lake City",
"state": "UT",
"zip": "84101"
},
"property_type": "single_family",
"estimated_value": 385000,
"valuation_source": "automated_avm",
"valuation_date": "2025-10-20",
"confidence_score": 0.87,
"tax_assessed_value": 310000,
"tax_year": 2025,
"annual_property_tax": 3250,
"lot_size_sqft": 8500,
"living_area_sqft": 2200,
"bedrooms": 4,
"bathrooms": 2.5,
"year_built": 1998,
"parcel_number": "12-345-678-9",
"zoning": "Residential R-1",
"mortgage_balance": 145000,
"equity_estimate": 240000,
"liens": [
{
"holder": "<string>",
"amount": 123,
"recorded_date": "2023-12-25"
}
],
"comparable_sales": [
{
"address": "<string>",
"sale_price": 123,
"sale_date": "2023-12-25",
"living_area_sqft": 123,
"distance_miles": 123
}
],
"status": "completed",
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total_count": 142,
"total_pages": 6,
"next_cursor": "eyJpZCI6IjAxSzVXRjA2TUo2VDk5SFJZRTQ4QU43WE04In0=",
"has_more": true
}
}{
"error": {
"code": "forbidden",
"message": "You do not have permission to access this resource."
}
}{
"error": {
"code": "not_found",
"message": "The requested resource was not found."
}
}Real Estate Valuations
List real estate valuations
List all property valuations for a case, including automated AVM results, tax assessments, and appraisal records.
GET
/
cases
/
{case_id}
/
real-estate-valuations
List real estate valuations
curl --request GET \
--url https://api.example.com/v1/cases/{case_id}/real-estate-valuations \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/v1/cases/{case_id}/real-estate-valuations"
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/cases/{case_id}/real-estate-valuations', 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/cases/{case_id}/real-estate-valuations",
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/cases/{case_id}/real-estate-valuations"
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/cases/{case_id}/real-estate-valuations")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/cases/{case_id}/real-estate-valuations")
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": [
{
"id": "01K9RE01AJ0T66HRYE78AN7WWW",
"financial_account_id": "01K5XA09BJ4T11HRYE78AN7ABC",
"property_address": {
"address1": "123 Main Street",
"address2": null,
"city": "Salt Lake City",
"state": "UT",
"zip": "84101"
},
"property_type": "single_family",
"estimated_value": 385000,
"valuation_source": "automated_avm",
"valuation_date": "2025-10-20",
"confidence_score": 0.87,
"tax_assessed_value": 310000,
"tax_year": 2025,
"annual_property_tax": 3250,
"lot_size_sqft": 8500,
"living_area_sqft": 2200,
"bedrooms": 4,
"bathrooms": 2.5,
"year_built": 1998,
"parcel_number": "12-345-678-9",
"zoning": "Residential R-1",
"mortgage_balance": 145000,
"equity_estimate": 240000,
"liens": [
{
"holder": "<string>",
"amount": 123,
"recorded_date": "2023-12-25"
}
],
"comparable_sales": [
{
"address": "<string>",
"sale_price": 123,
"sale_date": "2023-12-25",
"living_area_sqft": 123,
"distance_miles": 123
}
],
"status": "completed",
"notes": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total_count": 142,
"total_pages": 6,
"next_cursor": "eyJpZCI6IjAxSzVXRjA2TUo2VDk5SFJZRTQ4QU43WE04In0=",
"has_more": true
}
}{
"error": {
"code": "forbidden",
"message": "You do not have permission to access this resource."
}
}{
"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
Unique case identifier (ULID format).
Query Parameters
Page number for pagination.
Required range:
x >= 1Number of items per page.
Required range:
1 <= x <= 100Available options:
pending, completed, failed, stale Available options:
single_family, multi_family, condo, townhouse, mobile_home, vacant_land, commercial, farm_ranch, mixed_use, other ⌘I

