Property Owner
Look up the owner of a property by street address.
Credits: 3 per request
Request
http
POST /v1/property-ownerParameters
| Field | Type | Required | Description |
|---|---|---|---|
address | object | Yes | The property address |
address.street | string | Yes | Street address (e.g., "123 Main St") |
address.city | string | Yes | City |
address.state | string | Yes | State (2-letter code) |
address.zip | string | No | ZIP 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
| Field | Type | Description |
|---|---|---|
owner.name | object | Owner name (first, last, full) |
owner.type | string | individual, trust, llc, corporate |
owner.since | string | Approximate ownership start date |
property.type | string | single_family, condo, multi_family, commercial, land |
property.year_built | integer | Year the structure was built |
property.assessed_value | integer | County 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.