Full Property
Complete property resolution — get the owner's name, phone number, and email from an address in a single call.
Credits: 8 per request
Request
http
POST /v1/full-propertyParameters
| Field | Type | Required | Description |
|---|---|---|---|
address | object | Yes | The property address |
address.street | string | Yes | Street address |
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/full-property \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"address": {
"street": "456 Oak Ave",
"city": "Dallas",
"state": "TX",
"zip": "75201"
}
}'Response
json
{
"success": true,
"credits_used": 8,
"credits_remaining": 992,
"confidence": 0.95,
"data": {
"address": {
"street": "456 Oak Ave",
"city": "Dallas",
"state": "TX",
"zip": "75201"
},
"owner": {
"name": {
"first": "Maria",
"last": "Garcia",
"full": "Maria Garcia"
},
"type": "individual",
"since": "2021-06"
},
"contact": {
"phones": [
{
"number": "+12145551234",
"type": "mobile",
"primary": true
}
],
"emails": [
{
"address": "maria.garcia@email.com",
"primary": true
}
]
},
"property": {
"type": "single_family",
"year_built": 2003,
"bedrooms": 4,
"bathrooms": 3,
"sqft": 2400,
"lot_sqft": 6800,
"assessed_value": 520000
}
}
}Response Fields
| Field | Type | Description |
|---|---|---|
owner | object | Property owner details |
owner.name | object | Owner name (first, last, full) |
owner.type | string | individual, trust, llc, corporate |
owner.since | string | Approximate ownership start date |
contact.phones | array | Owner phone numbers with type and primary flag |
contact.emails | array | Owner email addresses with primary flag |
property | object | Property details (type, sqft, value, etc.) |
COST SAVINGS
Full Property (8 credits) is cheaper than calling Property Owner (3) + Phone Append (3) + separate email lookup individually. Use this endpoint when you need the complete picture.