Skip to content

Property Owner

Look up the owner of a property by street address.

Credits: 3 per request

Request

http
POST /v1/property-owner

Parameters

FieldTypeRequiredDescription
addressobjectYesThe property address
address.streetstringYesStreet address (e.g., "123 Main St")
address.citystringYesCity
address.statestringYesState (2-letter code)
address.zipstringNoZIP code (improves accuracy)

Example

bash
curl -X POST https://api.braidisdata.com/v1/property-owner \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "address": {
      "street": "123 Main St",
      "city": "Austin",
      "state": "TX",
      "zip": "78701"
    }
  }'

Response

json
{
  "success": true,
  "credits_used": 3,
  "credits_remaining": 997,
  "confidence": 0.98,
  "data": {
    "address": {
      "street": "123 Main St",
      "city": "Austin",
      "state": "TX",
      "zip": "78701"
    },
    "owner": {
      "name": {
        "first": "Jane",
        "last": "Doe",
        "full": "Jane Doe"
      },
      "type": "individual",
      "since": "2019-03"
    },
    "property": {
      "type": "single_family",
      "year_built": 1985,
      "bedrooms": 3,
      "bathrooms": 2,
      "sqft": 1850,
      "lot_sqft": 7200,
      "assessed_value": 425000
    }
  }
}

Response Fields

FieldTypeDescription
owner.nameobjectOwner name (first, last, full)
owner.typestringindividual, trust, llc, corporate
owner.sincestringApproximate ownership start date
property.typestringsingle_family, condo, multi_family, commercial, land
property.year_builtintegerYear the structure was built
property.assessed_valueintegerCounty tax assessed value in USD

TIP

Need the owner's phone and email too? Use Full Property (8 credits) to get everything in one call.

Braidis Data Enrichment Platform