Skip to content

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-property

Parameters

FieldTypeRequiredDescription
addressobjectYesThe property address
address.streetstringYesStreet address
address.citystringYesCity
address.statestringYesState (2-letter code)
address.zipstringNoZIP 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

FieldTypeDescription
ownerobjectProperty owner details
owner.nameobjectOwner name (first, last, full)
owner.typestringindividual, trust, llc, corporate
owner.sincestringApproximate ownership start date
contact.phonesarrayOwner phone numbers with type and primary flag
contact.emailsarrayOwner email addresses with primary flag
propertyobjectProperty 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.

Braidis Data Enrichment Platform