Accessing owners, brokers, & other people data

Establishing connections between individuals and the properties they are associated with can unlock valuable insights for a wide range of business needs. Whether you're reaching out to new homeowners, identifying real estate professionals, or assessing risk, having this data is key. We will walk through how to use Datafiniti’s APIs to identify people linked to specific properties. Our goal is to help you enhance lead profiles, validate ownership details, and get the most out of your property data with people data.

Locating people records in property data

Whether you are looking for contact info of a property owner, to broker's information on buying / selling a property, Datafiniti's property data creates (when we can verify) a link from our people database to a property database. There are two places this can be found with our property data schema. You can discover these field more within our Property Data Schema. Here are the top level fields were they can be found:

people.people_key - A unique key generated by Datafiniti to link a homeowner to our people database.

{
  people.people_key:\"mary/harris/us/fl/33919/1489charmontpl\"
}

brokers.people_key - A unique key generated by Datafiniti to link brokers to our people database.

{
	brokers.people_key:\"everett/zimmerman/1531473490\"
}

Once you have the people_key for the person you wish to search the people data base for, you can use it to find the linked record in Datafiniti's people database. From detailed contact information, to broker licensing, and more this will allow you greater insight into the person connect to the property.

Accessing data on owners

We can use Datafiniti's People Data search endpoint to enhance the results found from a property search. Providing more details about the specific homeowner you wish to know more about. This guide will provide you with the steps to bridge the gap between property & people data. If you would like a refresher on how to access homeowner data we recommend the following guides on how to find homeowner data.

1. Searching for property with linked owners

To start, we must first find property with homeowners that have been linked to our people data. This link can be identified with our people_key sub field. Using our Property Data search endpoint frist, we are filter the property data's people field for people_key. Using the previous Contact new home owners as a reference, you can use the following code to achieve this:

{
  "query":"country:US AND transactions.buyerFirstName:* AND transactions.saleDate:[2025-01-01 TO *] AND yearBuilt:[* TO 2018] AND people.people_key:*",
  "num_records":1
}

2. Find the people_key within your response

You will see the following response from which we can find your people_key of the owner:

{
            "address": "1489 Brenner Rd",
            "city": "Barberton",
            "dateUpdated": "2025-05-05T16:18:14Z",
            "postalCode": "44203",
            "people": [
                {
                    "name": "Mary Harris",
                    "firstName": "Mary",
                    "lastName": "Harris",
                    "title": "Owner",
                    "dateSeen": "2025-05-04T15:12:26.106Z",
                    "people_key": "mary/harris/us/fl/33919/1489charmontpl"
                }
            ]
}

3. Lookup the people record using your people_key

📘

People data searches

To use the People Data search endpoint requires a people data plan. Please check your Settings page if you are unsure if you have people data credits to use for this search.

Now we will use the People Data search endpoint to cross reference the property data's people_key to the people data's people_key. Using the mary/harris/us/fl/33919/1489charmontpl people_key from earlier we can directly filter the keys field of our people data. You can use the following query to do so:

{
  "query": "keys:\"mary/harris/us/fl/33919/1489charmontpl\"",
  "num_records": 1
}

Your response will look something like this:

{
            "address": "1489 Charmont Pl",
            "city": "FORT MYERS",
            "country": "US",
            "dateAdded": "2025-03-20T15:19:40Z",
            "dateUpdated": "2025-05-01T20:00:11Z",
            "domains": [
                "datafiniti.co"
            ],
            "firstName": "Mary",
            "keys": [
                "mary/harris/us/fl/fortmyers/1489charmontpl",
                "mary/harris/us/fl/33919/1489charmontpl"
            ],
            "lastName": "Harris",
  	    "phoneNumberHighScoreLand": "+1 702-565-6064",
            "phoneNumbers": [
                {
                    "number": "+1 702-565-6064",
                    "carrier": "CENTRAL TEL. CO. - NEVADA DBA CENTURYLINK",
                    "type": "Land Line",
                    "tested": true,
                    "reachableStatus": true,
                    "bdscore": 100,
                    "lastDateSeen": "2025-04-08T16:07:05.264Z"
                }
            ],  
            "postalCode": "33919",
            "province": "FL",
            "propertyKeys": [
                "us/fl/fortmyers/1489charmontpl"
            ],
            "sourceURLs": [
                "https://datafiniti.co/"
            ],
            "id": "F-UjtJUBnlMipTIrgi9T"
        }

When linking people data to property records, especially in the context of homeowners. Certain top-level fields in Datafiniti’s people data are particularly valuable.

  • phoneNumberHighScoreLand OR phoneNumberHighScoreMobile - This will be the highest likelihood contact phone number to call.
  • primaryEmail - the highest likely to reach email the person uses.
  • phoneNumbers - any phone number with a bd_score field will specific the likelihood of it being reachable. Higher score the better.

Accessing the broker data

We can use Datafiniti's People Data search endpoint to enhance the results found from a property search. Providing more details about brokers contact info, currently listing, and more. This guide will provide you the steps to bridge the gap between property & people data. If you would like a refresher on how to access brokers data we recommend the following guides:

1. Searching for property with linked brokers

To start, we must first find property with brokers that have been linked to our people data. This link can be identified with our people_key sub field. Using our Property Data search endpoint we are filter the property data's brokers field for people_key. Using the Search broker listing property as a start for our query, we can filter for the brokers.people_key in a search for broker listings. You can use the following code to achieve this:

{
    "query": "country:\"US\" AND province:TX AND city:dallas AND brokers.people_key:\"everett/zimmerman/1531473490\"",
    "num_records": 10
}

2. Find the people_key within your response

You will see the following response from which we can find your people_key of the owner:

{
                    "agent": "Everett Zimmerman",
                    "dateSeen": "2025-04-02T17:30:46.988Z",
                    "sourceURLs": [
                        "https://datafiniti.co/bd-datafiniti"
                    ],
                    "websites": [
                        "http://homesinwickenburg.com/"
                    ],
                    "people_key": "everett/zimmerman/1531473490"
                },

3. Lookup the broker record using your people_key

📘

People data searches

To use the People Data search endpoint requires a people data plan. Please check your Settings page if you are unsure if you have people data credits to use for this search.

Now we will use the People Data search endpoint to cross reference the broker's people_key to the people data's people_key. Using the everett/zimmerman/1531473490 people_key we can directly filter the keys field of our people data. You can use the following query to do so:

{
  "query": "keys:\"everett/zimmerman/1531473490\"",
  "num_records": 1
}

Your response will look something like this:

{
            "businessCategories": [
                "real estate"
            ],
            "city": "Wickenburg",
            "country": "US",
            "dateAdded": "2025-04-02T19:21:18Z",
            "dateUpdated": "2025-04-02T19:21:18Z",
            "domains": [
                "datafiniti.co"
            ],
            "emails": [
                "[email protected]"
            ],
            "firstName": "Everett",
            "industries": [
                "real estate"
            ],
            "jobTitle": "realtor",
            "keys": [
                "everett/zimmerman/1531473490",
                "everett/zimmerman/-1068410816",
                "everett/zimmerman/-913262633",
                "everett/zimmerman/1238008038",
                "everett/zimmerman/-619797181"
            ],
            "lastName": "Zimmerman",
            "licenses": [
                {
                    "value": "SA703888000"
                }
            ],
            "phoneNumbers": [
                {
                    "number": "+1 928-500-2020"
                },
                {
                    "number": "+1 480-794-1694"
                }
            ],
            "province": "AZ",
            "sourceURLs": [
                "https://datafiniti.co/bd-datafiniti"
            ],
            "websites": [
                "http://homesinwickenburg.com/"
            ],
            "id": "iDnz95UBg_PbdNMwZe0R"
        }

When linking people data to property records—especially in the context of real estate brokers—certain top-level fields in Datafiniti’s people data are particularly valuable.

  • businessCategories - Common found for brokers is the "real estate" value, but in specific case you can see if your broker specializes in commercial, land acquisition, non-profit, etc.
  • keys - Every key found here is tied to a unique property. These keys can be used to identify all For sale, and Sold properties from the broker.
  • licenses -This will show the license institution and/or number of the brokerage they work for.

Together, these fields enable a more complete and accurate connection between people and the properties they represent.

Using AutoTrace to populate people data

Owner data in property records will not include any contact information. The steps described above show how to look individual people records to get the contact information. If you need to pull multiple people records with contact information, you could script the API to follow the steps above in an automated fashion, or you could use Datafiniti's "Autotrace" API to do pull the contact information while querying the property database.

This section shows you how to use AutoTrace to uncover verified homeowner identities and contact details—starting from just a name or address. We will use the queries shown at Track property status changes as a starting point to find homeowners that recently put their property up for sale.

📘

When to use AutoTrace

AutoTrace is more useful for adding people data to property searches that return multiple records.

1. Define the property search

Let's say we're looking for properties with the followin criteria:

  • Properties in Houston, Texas
  • most recent status being "For Sale"
  • Were listed since March 1 2025
{
    "query": "country:\"US\" AND province:TX AND city:houston AND mostRecentStatus:\"For Sale\" AND mostRecentStatusFirstDateSeen:[2025-03-01 TO *]",
    "num_records": 10
}

2. Adding AutoTrace to the query

Next, we set AutoTrace to true to import people data into the query results. We add the following:

  • auto_trace - to use reference any people titled as "owner" and import and linked data from our people database.
  • only_traceable - only return records that we can enhance with people data.
{
  "query":"country:\"US\" AND province:TX AND city:houston AND mostRecentStatus:\"For Sale\" AND mostRecentStatusFirstDateSeen:[2025-03-01 TO *]",
  "num_records": 10,
  "auto_trace":true, 
  "only_traceable":true
}

3. Looking at your AutoTraced property record

Your AutoTrace-enabled property search will look largely the same, but you'll notice that the people field now includes fields from the People Data Schema.

Here's an example record:

 {
            "address": "7118 Boyce St",
            "architecturalStyles": [
                "Bungalow",
                "BUNGALOW"
            ],
            "assessedValues": [
                {
                    "year": 2024,
                    "totalAmount": 71324,
                    "landAmount": 50833,
                    "improvementsAmount": 20491
                },
                {
                    "year": 2023,
                    "totalAmount": 68777,
                    "landAmount": 50833,
                    "improvementsAmount": 17944
                }
            ],
            "brokers": [
                {
                    "agent": "Vera Mitrofanova",
                    "company": "Ross And Marshall Realty",
                    "dateSeen": "2024-07-10T08:32:20.817Z"
                },
                {
                    "agent": "Gillian Monypenny",
                    "company": "Ross And Marshall Realty",
                    "dateSeen": "2024-07-10T08:32:20.821Z"
                },
                {
                    "agent": "Luis Garza",
                    "company": "Realty Of America, Llc",
                    "dateSeen": "2025-03-10T15:12:00Z",
                    "emails": [
                        "[email protected]"
                    ],
                    "licenseNumber": "521775",
                    "phones": [
                        "5127889495",
                        "7134983197"
                    ]
                }
            ],
            "categories": [
                "SINGLE FAMILY RESIDENCE",
                "Residential",
                "Single Family Residence"
            ],
            "cbsaName": "Houston-Sugar Land-Baytown, TX Metropolitan Statistical Area",
            "cbsaCode": 26420,
            "censusBlock": 2023,
            "censusBlockGroup": 2,
            "censusTract": 211501,
            "city": "HOUSTON",
            "civilDivisionCode": 91835,
            "civilDivisionName": "Houston",
            "congressionalDistrictHouse": 391,
            "country": "US",
            "county": "Harris",
            "countyFIPS": 48201,
            "currentOwnerType": "Individual",
            "dateAdded": "2018-09-06T21:21:41Z",
            "dateUpdated": "2025-04-30T17:18:25Z",
            "descriptions": [
                {
                    "dateSeen": "2024-07-10T08:32:00.000Z",
                    "value": "This great investment opportunity awaits for you. You have an ability to either renovate the existing dwelling or built your dream home on a big corner lot. This 2 bedroom and 1 bathroom single family home is your plain canvas and you are its Picasso. Great location! Easy access to I-10 E. Schedule your private showing! Show more"
                },
                {
                    "dateSeen": "2020-04-16T10:45:00.000Z",
                    "value": "7118 Boyce St is a house in Houston, TX 77020. This 884 square foot house sits on a 6,575 square foot lot and features 2 bedrooms and 1 bathroom. This property was built in 1930. Based on Redfin's Houston data, we estimate the home's value is $86,886. Comparable nearby homes include 613 Majestic St, 1523 Demaree Ln, and 7139 Avenue H. According to Redfin's Rental Estimate, we expect that this home would rent for between $1,179 and $1,510. Nearby schools include Martinez R Elementary School, Resurrection Catholic School and Pugh Elementary School. The closest grocery stores are Sol Super Market, Burt's Meat Market & Cajun Foods and Fiesta Mart. The closest coffee shop is Cadeco Industries. Nearby restaurants include Ostioneria 7 Mares, Mucho Mexico Restaurant and Las Rosas. 7118 Boyce St is near Port Houston Park, Finnigan Park and Pleasanton Manor Park. This address can also be written as 7118 Boyce Street, Houston, Texas 77020."
                },
                {
                    "dateSeen": "2025-03-06T15:51:00.000Z",
                    "value": "This lot/land is located at 7118 Boyce St, Houston, TX. 7118 Boyce St is in the Denver Harbor - Port Houston neighborhood in Houston, TX and in ZIP code 77020. It is currently for sale and was just listed on Trulia today. This property is listed for $75,000. This property has a lot size of 2662 sqft."
                },
                {
                    "dateSeen": "2020-01-31T13:21:00.000Z",
                    "value": "7118 Boyce St is a house in Houston, TX 77020. This 884 square foot house sits on a 6,575 square foot lot and features 2 bedrooms and 1 bathroom. This property was built in 1930. Based on Redfin's Houston data, we estimate the home's value is $93,521. Comparable nearby homes include 6647 Avenue Q, 1034 Hoffman St, and 7417 Hershe St. Nearby schools include Martinez R Elementary School, Resurrection Catholic School and Pugh Elementary School. The closest grocery stores are Sol Super Market, Burt's Meat Market & Cajun Foods and Fiesta Mart. The closest coffee shop is Cadeco Industries. Nearby restaurants include Ostioneria 7 Mares, Mucho Mexico Restaurant and Las Rosas. 7118 Boyce St is near Port Houston Park, Finnigan Park and Pleasanton Manor Park. This address can also be written as 7118 Boyce Street, Houston, Texas 77020."
                }
            ],
            "exteriorConstruction": [
                "Concrete Block",
                "Brick Veneer",
                "Frame",
                "RAISED (UNSPECIFIED)",
                "FRAME",
                "CONCRETE BLOCK",
                "Raised (unspecified)"
            ],
            "exteriorFeatures": [
                "No Info"
            ],
            "features": [
                {
                    "key": "documentCode",
                    "value": [
                        "WARRANTY DEED"
                    ]
                },
                {
                    "key": "legalLotNumber1",
                    "value": [
                        "1"
                    ]
                },
                {
                    "key": "Water Sewer",
                    "value": [
                        "Public Water",
                        "Public Sewer"
                    ]
                },
                {
                    "key": "TransferInfoPurchaseTypeCode",
                    "value": [
                        "TRANSFER",
                        "Transfer"
                    ]
                },
                {
                    "value": [
                        "Biking Score: 50/100 - Bikeable",
                        "Transit Score: 38/100 - Some Transit",
                        "Biking Score: 65/100 - Bikeable",
                        "Walking Score: 61/100 - Somewhat Walkable",
                        "Walking Score: 44/100 - Car-Dependent"
                    ],
                    "key": "Postal Code (77020) Transport Scores"
                },
                {
                    "key": "AreaGross",
                    "value": [
                        "884"
                    ]
                },
                {
                    "key": "floor1SizeValue",
                    "value": [
                        "884"
                    ]
                },
                {
                    "key": "Jr High / Middle School District",
                    "value": [
                        "27 - Houston"
                    ]
                },
                {
                    "key": "Financial Information",
                    "value": [
                        "Financing Available: Cash Sale, Investor"
                    ]
                },
                {
                    "value": [
                        "1 full"
                    ],
                    "key": "Baths"
                },
                {
                    "key": "Utilities",
                    "value": [
                        "Cable Unknown, Electric Availability Unknown, Gas Availability Unknown"
                    ]
                },
                {
                    "key": "lotSizeValueAcres",
                    "value": [
                        "0.0611111"
                    ]
                },
                {
                    "key": "mlsName",
                    "value": [
                        "Houston Association of Realtors"
                    ]
                },
                {
                    "key": "Listing ID",
                    "value": [
                        "6522849"
                    ]
                },
                {
                    "key": "Listing Information",
                    "value": [
                        "Buying Agent Compensation: 3%",
                        "Exclusive Right to Sell/Lease",
                        "Comp Sub Agent: 0%"
                    ]
                },
                {
                    "key": "Foundation",
                    "value": [
                        "Slab"
                    ]
                },
                {
                    "key": "Price/Sqft",
                    "value": [
                        "No Info"
                    ]
                },
                {
                    "key": "High School District",
                    "value": [
                        "27 - Houston"
                    ]
                },
                {
                    "key": "Market Value",
                    "value": [
                        "$71,324"
                    ]
                },
                {
                    "key": "Interior Features",
                    "value": [
                        "Room Count: 2"
                    ]
                },
                {
                    "value": [
                        "2019: $1,025",
                        "2019: $1,071",
                        "2018: $1,071"
                    ],
                    "key": "Tax Record"
                },
                {
                    "value": [
                        "Median $ / Sq. Ft.: $175",
                        "Median $ / Sq. Ft.: $173",
                        "Median $ / Sq. Ft.: $174",
                        "Median $ / Sq. Ft.: $171",
                        "Median $ / Sq. Ft.: $150",
                        "# Sold Homes: 6",
                        "Median Sale / List: 97%",
                        "Median List Price: $245,000",
                        "Avg. Down Payment: 10.0%",
                        "Avg. # Offers: 1",
                        "# Sold Homes: 21",
                        "Median Sale / List: 95%",
                        "# Sold Homes: 22",
                        "# Sold Homes: 20",
                        "Median List Price: $280K",
                        "Median $ / Sq. Ft.: $169",
                        "Median Sale / List: 96.5%",
                        "Median List Price: $269,000",
                        "Median List Price: $264,000",
                        "Median List Price: $240K",
                        "# Sold Homes: 19",
                        "Median Sale / List: 97.9%",
                        "Median List Price: $260,000",
                        "Median Sale / List: 96%",
                        "Median List Price: $254,500"
                    ],
                    "key": "Postal Code (77020) Real Estate Sales (Last 30 Days)"
                },
                {
                    "value": [
                        "5107 Farmer St, Houston, TX 77020",
                        "1620 Bringhurst St, Houston, TX 77020",
                        "6719 Avenue T Ave, Houston, TX 77011",
                        "1116 Capron St, Houston, TX 77020",
                        "5711 Hillsboro St, Houston, TX 77020",
                        "5310 San Juan St, Houston, TX 77020",
                        "3120 Fontinot St, Houston, TX 77026",
                        "7118 Abilene St, Houston, TX 77020",
                        "4410 Noble St, Houston, TX 77020",
                        "4601 Farmer St, Houston, TX 77020",
                        "6314 Laredo St, Houston, TX 77020",
                        "6647 Avenue Q, Houston, TX 77011",
                        "6916 Brownsville St, Houston, TX 77020",
                        "7326 Hillsboro, Houston, TX 77020",
                        "7417 Hershe St, Houston, TX 77020",
                        "1801 Sakowitz St, Houston, TX 77020",
                        "524 N Jenkins St, Houston, TX 77003",
                        "6933 J W Peavy Dr, Houston, TX 77011"
                    ],
                    "key": "Nearby Recently Sold Homes"
                },
                {
                    "key": "City",
                    "value": [
                        "Houston"
                    ]
                },
                {
                    "key": "NeighborhoodCode",
                    "value": [
                        "7113"
                    ]
                },
                {
                    "key": "Redfin Estimate (Price)",
                    "replace": "true",
                    "value": [
                        "$125,645"
                    ]
                },
                {
                    "key": "Private Pool",
                    "value": [
                        "No"
                    ]
                },
                {
                    "key": "directions",
                    "value": [
                        "From I10 E, exit Lathrop, turn right on Lathrop, turn left on Gonzales, turn right on Boyles, turn left on Boyce, house is on the right."
                    ]
                },
                {
                    "key": "Price History - Redfin",
                    "value": [
                        "Date: 4/20/2018 - Price: N/A - Event: Pending",
                        "Date: 3/17/2018 - Price: $70000 - Event: Listed",
                        "Date: 5/3/2018 - Price: N/A - Event: Sold (MLS)",
                        "Date: 5/4/2018 - Price: N/A - Event: Sold (Public Records)",
                        "Date: 5/13/1992 - Price: N/A - Event: Sold (Public Records)",
                        "Date: 5/1/2018 - Price: N/A - Event: Pending",
                        "Date: 4/11/2018 - Price: N/A - Event: Pending"
                    ],
                    "replace": "true"
                },
                {
                    "value": [
                        "Land: $24,597",
                        "Additions: $17,736",
                        "Total: $42,333"
                    ],
                    "key": "Taxable Value"
                },
                {
                    "key": "CensusFIPSPlaceCode",
                    "value": [
                        "35000"
                    ]
                },
                {
                    "value": [
                        "Tue Apr 10 2018 00:00:00 GMT+0000 (Coordinated Universal Time) - Pending",
                        "Thu Apr 19 2018 00:00:00 GMT+0000 (Coordinated Universal Time) - Pending (Option Pending)",
                        "Tue May 01 2018 00:00:00 GMT+0000 (Coordinated Universal Time) - Pending"
                    ],
                    "key": "Property History"
                },
                {
                    "key": "Lot Information",
                    "value": [
                        "Lot Description: Subdivision Lot",
                        "Section Num: 4",
                        "Legal Lot Description: LT 5 BLK 36 LIBERTY HEIGHTS SEC 4"
                    ]
                },
                {
                    "key": "Listing Office & Agent Information",
                    "value": [
                        "TREC License Number: 0674459",
                        "List Agent Email: [email protected]"
                    ]
                },
                {
                    "key": "Days on Market",
                    "value": [
                        "<1 Day on Trulia"
                    ]
                },
                {
                    "key": "Heating & Cooling Information",
                    "value": [
                        "Heating System: Other Heating",
                        "Cooling System: Other Cooling"
                    ]
                },
                {
                    "key": "jurisdiction",
                    "value": [
                        "HARRIS",
                        "Harris"
                    ]
                },
                {
                    "key": "TaxAssessedImprovementsPerc",
                    "value": [
                        "26",
                        "28"
                    ]
                },
                {
                    "key": "Building Information",
                    "value": [
                        "Roof: Composition",
                        "Siding: Brick Veneer",
                        "Foundation: Slab",
                        "Defects: Has Known Defects, Seller's Disclosure Attached"
                    ]
                },
                {
                    "value": [
                        "$98"
                    ],
                    "key": "Price/Sq.Ft."
                },
                {
                    "value": [
                        "Harris"
                    ],
                    "key": "County"
                },
                {
                    "key": "QuitclaimDocument",
                    "value": [
                        "false"
                    ]
                },
                {
                    "key": "Listing Status",
                    "value": [
                        "Currently not for sale"
                    ]
                },
                {
                    "key": "SitusStateCountyFIPS",
                    "value": [
                        "48201"
                    ]
                },
                {
                    "key": "Home Information",
                    "value": [
                        "Dwelling Type: Free Standing"
                    ]
                },
                {
                    "key": "Redfin Rental Estimate",
                    "replace": "true",
                    "value": [
                        "$1452 - $1474 / month"
                    ]
                },
                {
                    "key": "seller_company",
                    "value": [
                        "Batte Betty A"
                    ]
                },
                {
                    "key": "Elementary School District",
                    "value": [
                        "27 - Houston"
                    ]
                },
                {
                    "key": "Jr High / Middle School",
                    "value": [
                        "Mcreynolds Middle School"
                    ]
                },
                {
                    "value": [
                        "This area is somewhat walkable — some errands can be accomplished on foot. Transit is available, with a few nearby public transportation options. There is some amount of infrastructure for biking.",
                        "This area is car dependent — most errands require a car. Transit is available, with a few nearby public transportation options. There is some amount of infrastructure for biking."
                    ],
                    "key": "Postal Code (77020) Transport Description"
                },
                {
                    "key": "Listing Agreement Type",
                    "value": [
                        "Exclusive Right to Sell/Lease"
                    ]
                },
                {
                    "key": "legalBlock1",
                    "value": [
                        "1"
                    ]
                },
                {
                    "key": "Subdivision",
                    "value": [
                        "LIBERTY HEIGHTS"
                    ]
                },
                {
                    "key": "Elementary School",
                    "value": [
                        "Martinez R Elementary School"
                    ]
                },
                {
                    "key": "Room 2 Information",
                    "value": [
                        "Room Type: Bedroom",
                        "Dimensions: N/A"
                    ]
                },
                {
                    "key": "armsLengthTransaction",
                    "value": [
                        "true"
                    ]
                },
                {
                    "key": "Lot Description",
                    "value": [
                        "Subdivision Lot"
                    ]
                },
                {
                    "key": "View",
                    "value": [
                        "No View"
                    ]
                },
                {
                    "key": "CombinedStatisticalArea",
                    "value": [
                        "Houston-The Woodlands, TX"
                    ]
                },
                {
                    "key": "Listed",
                    "value": [
                        "No Info"
                    ],
                    "replace": "true"
                },
                {
                    "key": "LastAssessorTaxRollUpdate",
                    "value": [
                        "2023-07-25",
                        "2024-07-25"
                    ]
                },
                {
                    "key": "Miscellaneous Information",
                    "value": [
                        "Is IDX Opt In"
                    ]
                },
                {
                    "key": "recepNumber",
                    "value": [
                        "1052679426",
                        "788473647"
                    ]
                },
                {
                    "key": "Sewer",
                    "value": [
                        "Public Sewer"
                    ]
                },
                {
                    "key": "Property Type",
                    "value": [
                        "Land"
                    ]
                },
                {
                    "key": "Water & Sewer Information",
                    "value": [
                        "Public Sewer, Public Water"
                    ]
                },
                {
                    "value": [
                        "6838 Avenue S, Houston, TX 77011",
                        "548 Majestic St, Houston, TX 77020",
                        "909 Terminal St, Houston, TX 77011",
                        "127 Kress St, Houston, TX 77020",
                        "5413 Margarita, Houston, TX 77020",
                        "2422 Chew St, Houston, TX 77020",
                        "6208 Octavia St, Houston, TX 77026",
                        "5410 San Juan St, Houston, TX 77020",
                        "3924 Hoffman St, Houston, TX 77026",
                        "6933 Avenue O, Houston, TX 77011",
                        "5542 Arapahoe St, Houston, TX 77020",
                        "4718 Vernon St, Houston, TX 77020",
                        "1206 Wooding St, Houston, TX 77011",
                        "7114 Navigation Blvd, Houston, TX 77011",
                        "6214 Octavia St, Houston, TX 77026",
                        "1614 Wipprecht St, Houston, TX 77020",
                        "8219 Buchanan St, Houston, TX 77029",
                        "2820 Clementine St, Houston, TX 77026",
                        "6835 Avenue S, Houston, TX 77011",
                        "1815 Teanaway Ln, Houston, TX 77029",
                        "7101 Avenue P, Houston, TX 77011",
                        "6642 Avenue N, Houston, TX 77011",
                        "4407 New Orleans St, Houston, TX 77020",
                        "234 Hoffman St, Houston, TX 77020",
                        "5001 Farmer St, Houston, TX 77020",
                        "531 Woolworth St, Houston, TX 77020",
                        "4718 Gunter St, Houston, TX 77020",
                        "7401 Anzac St, Houston, TX 77020",
                        "5109 Farmer St, Houston, TX 77020",
                        "2316 Harlem, Houston, TX 77020",
                        "2110 Erastus St, Houston, TX 77020",
                        "5207 Jewel St, Houston, TX 77026",
                        "7030 Avenue P, Houston, TX 77011",
                        "5116 Lelia St, Houston, TX 77026",
                        "2013 Schweikhardt St, Houston, TX 77020",
                        "1415 Silverdale St, Houston, TX 77029",
                        "6732 Avenue R, Houston, TX 77011",
                        "8210 Cargill St, Houston, TX 77029"
                    ],
                    "key": "Nearby Similar Homes"
                },
                {
                    "key": "Room 1 Information",
                    "value": [
                        "Room Type: Bedroom",
                        "Dimensions: N/A"
                    ]
                },
                {
                    "key": "Location Information",
                    "value": [
                        "Directions: From I10 E, exit Lathrop, turn right on Lathrop, turn left on Gonzales, turn right on Boyles, turn left on Boyce, house is on the right.",
                        "MLS Map Page and Grid: 495J",
                        "Area: East"
                    ]
                },
                {
                    "key": "TaxMarketImprovementsPerc",
                    "value": [
                        "26",
                        "28"
                    ]
                },
                {
                    "key": "AreaBuildingDefinitionCode",
                    "value": [
                        "Living Area"
                    ]
                },
                {
                    "key": "mlsID",
                    "value": [
                        "Houston"
                    ]
                },
                {
                    "key": "Community",
                    "value": [
                        "Liberty Heights Sec 04"
                    ]
                }
            ],
            "floorSizeValue": 884,
            "floorSizeUnit": "sq ft",
            "geoLocation": "POINT (-95.297842 29.768621)",
            "hvacTypes": [
                "Other Cooling",
                "Other Heating",
                "HVACHeating",
                "Contact Manager",
                "NONE",
                "None"
            ],
            "instrumentNumber": "2025-84917",
            "latitude": "29.768621",
            "legalDescription": "Lt 1 Blk 1 Boyce Estates",
            "longitude": "-95.297842",
            "lotSizeValue": 2662,
            "lotSizeUnit": "sqft",
            "mostRecentBrokerAgent": "Luis Garza",
            "mostRecentBrokerCompany": "Realty Of America, Llc",
            "mostRecentBrokerEmails": [
                "[email protected]"
            ],
            "mostRecentBrokerPhones": [
                "5127889495",
                "7134983197"
            ],
            "mostRecentBrokerDateSeen": "2025-03-10T15:12:00Z",
            "mostRecentPriceAmount": 70000,
            "mostRecentPriceDomain": "www.trulia.com",
            "mostRecentPriceSourceURL": "https://www.redfin.com/TX/Houston/7118-Boyce-St-77020/home/29823234",
            "mostRecentPriceDate": "2018-03-18T00:00:00.000Z",
            "mostRecentPriceFirstDateSeen": "2025-03-06T15:51:10.149Z",
            "mostRecentEstimatedPriceAmount": 125645,
            "mostRecentEstimatedPriceDomain": "www.redfin.com",
            "mostRecentEstimatedPriceFirstDateSeen": "2024-04-16T11:47:45.261Z",
            "mostRecentStatus": "For Sale",
            "mostRecentStatusDate": "2025-03-06T00:00:00.000Z",
            "mostRecentStatusFirstDateSeen": "2025-03-06T15:51:10.149Z",
            "mlsNumber": "6522849",
            "msaName": "Houston-Sugar Land-Baytown, TX",
            "msaCode": 26420,
            "neighborhoods": [
                "Liberty Heights Sec 04",
                "Texas",
                "Denver Harbor - Port Houston",
                "Houston"
            ],
            "numBathroom": 1,
            "numBedroom": 2,
            "numFloor": 1,
            "ownerOccupiedStatus": [
                {
                    "status": true,
                    "firstDateSeen": "2023-11-03T20:10:17.724Z",
                    "lastDateSeen": "2023-11-03T20:10:17.724Z",
                    "startDate": "2018-05-04T00:00:00.000Z"
                }
            ],
            "parcelNumbers": [
                {
                    "number": "1415100010001",
                    "account": "141-510-001-0001",
                    "year": 1995
                }
            ],
            "parking": [
                "No Garage",
                "No Carport",
                "No Info"
            ],
            "parkingTypes": [
                "Carport",
                "Attached Garage"
            ],
            "postalCode": "77020",
            "prices": [
                {
                    "amountMax": 70000,
                    "amountMin": 70000,
                    "currency": "USD",
                    "date": "2018-03-18T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-06T15:51:10.149Z"
                    ],
                    "firstDateSeen": "2025-03-06T15:51:10.149Z",
                    "lastDateSeen": "2025-03-06T15:51:10.149Z",
                    "domains": [
                        "www.trulia.com"
                    ],
                    "isSale": "false",
                    "isSold": "false",
                    "pricePerSquareFoot": 79.19
                }
            ],
            "propertyTaxes": [
                {
                    "amount": 1385,
                    "currency": "USD",
                    "dateSeen": [
                        "2025-04-30T15:14:32.055Z"
                    ]
                },
                {
                    "amount": 1492,
                    "currency": "USD",
                    "dateSeen": [
                        "2025-03-10T15:11:22.276Z"
                    ]
                },
                {
                    "amount": 1385,
                    "currency": "USD",
                    "dateSeen": [
                        "2025-04-14T15:14:32.357Z",
                        "2025-04-24T15:14:33.185Z",
                        "2025-04-29T15:14:31.477Z",
                        "2025-03-31T15:14:32.146Z",
                        "2025-03-23T15:14:32.035Z",
                        "2025-04-27T15:14:32.478Z",
                        "2025-04-01T15:14:32.248Z",
                        "2025-03-28T15:14:45.813Z",
                        "2025-04-04T15:14:43.311Z",
                        "2025-04-02T15:14:32.049Z",
                        "2025-03-22T15:14:31.246Z",
                        "2025-04-23T15:14:32.447Z",
                        "2025-04-17T15:14:32.407Z",
                        "2025-03-20T15:14:32.875Z",
                        "2025-03-24T15:14:31.861Z",
                        "2025-03-25T15:14:44.866Z",
                        "2025-04-06T15:14:31.786Z",
                        "2025-03-21T15:14:32.555Z",
                        "2025-03-29T15:14:44.581Z",
                        "2025-03-26T15:14:46.562Z",
                        "2025-04-12T15:14:31.081Z",
                        "2025-04-16T15:14:31.915Z",
                        "2025-04-09T15:14:32.022Z",
                        "2025-04-28T15:14:32.551Z",
                        "2025-04-21T15:14:32.337Z",
                        "2025-04-03T15:14:44.384Z",
                        "2025-03-30T15:14:31.702Z",
                        "2025-04-10T15:14:32.006Z",
                        "2025-04-26T15:14:32.082Z",
                        "2025-04-22T15:14:46.532Z",
                        "2025-04-18T15:14:32.822Z",
                        "2025-04-13T15:14:31.356Z",
                        "2025-04-05T15:14:31.770Z",
                        "2025-04-11T15:14:32.201Z",
                        "2025-04-20T15:14:31.336Z",
                        "2025-04-19T15:14:31.404Z",
                        "2025-04-08T15:14:32.393Z",
                        "2025-04-07T15:14:32.021Z",
                        "2025-04-15T15:14:32.885Z",
                        "2025-04-25T15:14:33.269Z"
                    ]
                }
            ],
            "propertyType": "Land",
            "province": "TX",
            "roofing": [
                "Composition"
            ],
            "subdivision": "LIBERTY HEIGHTS",
            "statuses": [
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-11T15:14:32.201Z"
                    ],
                    "firstDateSeen": "2025-04-11T15:14:32.201Z",
                    "lastDateSeen": "2025-04-11T15:14:32.201Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-26T15:14:46.562Z"
                    ],
                    "firstDateSeen": "2025-03-26T15:14:46.562Z",
                    "lastDateSeen": "2025-03-26T15:14:46.562Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-29T15:14:44.581Z"
                    ],
                    "firstDateSeen": "2025-03-29T15:14:44.581Z",
                    "lastDateSeen": "2025-03-29T15:14:44.581Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-06T15:14:31.786Z"
                    ],
                    "firstDateSeen": "2025-04-06T15:14:31.786Z",
                    "lastDateSeen": "2025-04-06T15:14:31.786Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-20T15:14:31.336Z"
                    ],
                    "firstDateSeen": "2025-04-20T15:14:31.336Z",
                    "lastDateSeen": "2025-04-20T15:14:31.336Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-27T15:14:32.478Z"
                    ],
                    "firstDateSeen": "2025-04-27T15:14:32.478Z",
                    "lastDateSeen": "2025-04-27T15:14:32.478Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-12T15:14:31.081Z"
                    ],
                    "firstDateSeen": "2025-04-12T15:14:31.081Z",
                    "lastDateSeen": "2025-04-12T15:14:31.081Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-23T15:14:32.035Z"
                    ],
                    "firstDateSeen": "2025-03-23T15:14:32.035Z",
                    "lastDateSeen": "2025-03-23T15:14:32.035Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-14T15:14:32.357Z"
                    ],
                    "firstDateSeen": "2025-04-14T15:14:32.357Z",
                    "lastDateSeen": "2025-04-14T15:14:32.357Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-25T15:14:33.269Z"
                    ],
                    "firstDateSeen": "2025-04-25T15:14:33.269Z",
                    "lastDateSeen": "2025-04-25T15:14:33.269Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-09T15:14:32.022Z"
                    ],
                    "firstDateSeen": "2025-04-09T15:14:32.022Z",
                    "lastDateSeen": "2025-04-09T15:14:32.022Z",
                    "type": "Sold"
                },
                {
                    "dateSeen": [
                        "2024-07-10T08:32:20.809Z"
                    ],
                    "firstDateSeen": "2024-07-10T08:32:20.809Z",
                    "lastDateSeen": "2024-07-10T08:32:20.809Z",
                    "type": "Off Market"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-20T15:14:32.876Z"
                    ],
                    "firstDateSeen": "2025-03-20T15:14:32.876Z",
                    "lastDateSeen": "2025-03-20T15:14:32.876Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-29T15:14:31.477Z"
                    ],
                    "firstDateSeen": "2025-04-29T15:14:31.477Z",
                    "lastDateSeen": "2025-04-29T15:14:31.477Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-24T15:14:33.185Z"
                    ],
                    "firstDateSeen": "2025-04-24T15:14:33.185Z",
                    "lastDateSeen": "2025-04-24T15:14:33.185Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-30T15:14:31.702Z"
                    ],
                    "firstDateSeen": "2025-03-30T15:14:31.702Z",
                    "lastDateSeen": "2025-03-30T15:14:31.702Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-30T15:14:32.055Z"
                    ],
                    "firstDateSeen": "2025-04-30T15:14:32.055Z",
                    "lastDateSeen": "2025-04-30T15:14:32.055Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-04T15:14:43.311Z"
                    ],
                    "firstDateSeen": "2025-04-04T15:14:43.311Z",
                    "lastDateSeen": "2025-04-04T15:14:43.311Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-22T15:14:46.532Z"
                    ],
                    "firstDateSeen": "2025-04-22T15:14:46.532Z",
                    "lastDateSeen": "2025-04-22T15:14:46.532Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-24T15:14:31.861Z"
                    ],
                    "firstDateSeen": "2025-03-24T15:14:31.861Z",
                    "lastDateSeen": "2025-03-24T15:14:31.861Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-05T15:14:31.770Z"
                    ],
                    "firstDateSeen": "2025-04-05T15:14:31.770Z",
                    "lastDateSeen": "2025-04-05T15:14:31.770Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-25T15:14:44.866Z"
                    ],
                    "firstDateSeen": "2025-03-25T15:14:44.866Z",
                    "lastDateSeen": "2025-03-25T15:14:44.866Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-19T15:14:31.404Z"
                    ],
                    "firstDateSeen": "2025-04-19T15:14:31.404Z",
                    "lastDateSeen": "2025-04-19T15:14:31.404Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-21T15:14:32.555Z"
                    ],
                    "firstDateSeen": "2025-03-21T15:14:32.555Z",
                    "lastDateSeen": "2025-03-21T15:14:32.555Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-08T15:14:32.393Z"
                    ],
                    "firstDateSeen": "2025-04-08T15:14:32.393Z",
                    "lastDateSeen": "2025-04-08T15:14:32.393Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-21T15:14:32.337Z"
                    ],
                    "firstDateSeen": "2025-04-21T15:14:32.337Z",
                    "lastDateSeen": "2025-04-21T15:14:32.337Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-07T15:14:32.021Z"
                    ],
                    "firstDateSeen": "2025-04-07T15:14:32.021Z",
                    "lastDateSeen": "2025-04-07T15:14:32.021Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-16T15:14:31.915Z"
                    ],
                    "firstDateSeen": "2025-04-16T15:14:31.915Z",
                    "lastDateSeen": "2025-04-16T15:14:31.915Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-15T15:14:32.885Z"
                    ],
                    "firstDateSeen": "2025-04-15T15:14:32.885Z",
                    "lastDateSeen": "2025-04-15T15:14:32.885Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-03T15:14:44.384Z"
                    ],
                    "firstDateSeen": "2025-04-03T15:14:44.384Z",
                    "lastDateSeen": "2025-04-03T15:14:44.384Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-31T15:14:32.146Z"
                    ],
                    "firstDateSeen": "2025-03-31T15:14:32.146Z",
                    "lastDateSeen": "2025-03-31T15:14:32.146Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-28T15:14:32.551Z"
                    ],
                    "firstDateSeen": "2025-04-28T15:14:32.551Z",
                    "lastDateSeen": "2025-04-28T15:14:32.551Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-10T15:14:32.007Z"
                    ],
                    "firstDateSeen": "2025-04-10T15:14:32.007Z",
                    "lastDateSeen": "2025-04-10T15:14:32.007Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-01T15:14:32.248Z"
                    ],
                    "firstDateSeen": "2025-04-01T15:14:32.248Z",
                    "lastDateSeen": "2025-04-01T15:14:32.248Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-17T15:14:32.407Z"
                    ],
                    "firstDateSeen": "2025-04-17T15:14:32.407Z",
                    "lastDateSeen": "2025-04-17T15:14:32.407Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-22T15:14:31.246Z"
                    ],
                    "firstDateSeen": "2025-03-22T15:14:31.246Z",
                    "lastDateSeen": "2025-03-22T15:14:31.246Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-02T15:14:32.049Z"
                    ],
                    "firstDateSeen": "2025-04-02T15:14:32.049Z",
                    "lastDateSeen": "2025-04-02T15:14:32.049Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-26T15:14:32.082Z"
                    ],
                    "firstDateSeen": "2025-04-26T15:14:32.082Z",
                    "lastDateSeen": "2025-04-26T15:14:32.082Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-23T15:14:32.447Z"
                    ],
                    "firstDateSeen": "2025-04-23T15:14:32.447Z",
                    "lastDateSeen": "2025-04-23T15:14:32.447Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-18T15:14:32.822Z"
                    ],
                    "firstDateSeen": "2025-04-18T15:14:32.822Z",
                    "lastDateSeen": "2025-04-18T15:14:32.822Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-04-13T15:14:31.356Z"
                    ],
                    "firstDateSeen": "2025-04-13T15:14:31.356Z",
                    "lastDateSeen": "2025-04-13T15:14:31.356Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-28T15:14:45.813Z"
                    ],
                    "firstDateSeen": "2025-03-28T15:14:45.813Z",
                    "lastDateSeen": "2025-03-28T15:14:45.813Z",
                    "type": "Sold"
                },
                {
                    "date": "2025-03-06T00:00:00.000Z",
                    "dateSeen": [
                        "2025-03-06T15:51:10.149Z"
                    ],
                    "firstDateSeen": "2025-03-06T15:51:10.149Z",
                    "lastDateSeen": "2025-03-06T15:51:10.149Z",
                    "isUnderContract": "false",
                    "type": "For Sale"
                },
                {
                    "date": "2018-05-04T00:00:00.000Z",
                    "type": "Sold"
                },
                {
                    "date": "2023-08-10T00:00:00.000Z",
                    "type": "Sold"
                }
            ],
            "taxID": "1415100010001",
            "transactions": [
                {
                    "saleDate": "2018-05-04T00:00:00.000Z",
                    "documentNumber": "194595",
                    "buyerFirstName": "Carmelo",
                    "buyerLastName": "Arredondo",
                    "ownerType": "COMPANY",
                    "contactOwnerMailAddressFull": "7118 BOYCE ST, HOUSTON, TX, 77020"
                },
                {
                    "saleDate": "2023-08-10T00:00:00.000Z",
                    "documentType": "Special Warranty Deed",
                    "sellerFirstName": "Carmelo",
                    "sellerLastName": "Arredondo",
                    "buyerFirstName": "Juan",
                    "buyerLastName": "Bernabe",
                    "ownerType": "Individual",
                    "contactOwnerMailAddressFull": "427 Meters St, Houston, TX, 77020"
                }
            ],
            "yearBuilt": 1930,
            "people": [
                {
                    "address": "7118 Boyce St",
                    "city": "HOUSTON",
                    "country": "US",
                    "dateAdded": "2025-03-20T15:23:15Z",
                    "dateUpdated": "2025-04-30T17:18:26Z",
                    "firstName": "Juan",
                    "keys": [
                        "juan/bernabe/us/tx/houston/7118boycest",
                        "juan/bernabe/us/tx/77020/7118boycest"
                    ],
                    "lastName": "Bernabe",
                    "postalCode": "77020",
                    "province": "TX",
                    "sourceURLs": [
                        "https://datafiniti.co/"
                    ]
                }
            ],
            "id": "AWWwzKUUAXxH_fqQTKuQ"
        },

🚧

People data plan

Please note that Autotrace API requests require available property data credits and people data credits. Using an Autotrace-enabled search will charge 1 property data credit and 1 people data credit per num_found or set by num_records.

For more information on how to integrate Autotrace into your current property data search, you can read more in the recipe below:

Example Records

Here are example bulk download AutoTrace files of our previous query: