Skip to content

Full Identity

Complete identity resolution — build a verified profile from any starting fragment (phone, name, address, or email).

Credits: 15 per request

This is the most comprehensive endpoint. It chains multiple data sources to build a complete profile from minimal input.

Request

http
POST /v1/full-identity

Parameters

Provide at least one of the following:

FieldTypeRequiredDescription
phonestringNo*Phone number
nameobjectNo*Person's name
name.firststringFirst name
name.laststringLast name
addressobjectNo*Address
address.streetstringStreet address
address.citystringCity
address.statestringState
address.zipstringZIP code
emailstringNo*Email address

*At least one field group is required. More input = higher confidence.

Example — Starting from phone only

bash
curl -X POST https://api.braidisdata.com/v1/full-identity \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"phone": "+15551234567"}'

Example — Starting from name + city

bash
curl -X POST https://api.braidisdata.com/v1/full-identity \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": { "first": "John", "last": "Smith" },
    "address": { "city": "Austin", "state": "TX" }
  }'

Response

json
{
  "success": true,
  "credits_used": 15,
  "credits_remaining": 985,
  "confidence": 0.92,
  "data": {
    "name": {
      "first": "John",
      "last": "Smith",
      "full": "John Smith"
    },
    "phones": [
      {
        "number": "+15551234567",
        "type": "mobile",
        "carrier": "T-Mobile",
        "primary": true
      },
      {
        "number": "+15125559999",
        "type": "landline",
        "primary": false
      }
    ],
    "emails": [
      {
        "address": "john.smith@email.com",
        "primary": true
      }
    ],
    "addresses": [
      {
        "street": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "zip": "78701",
        "type": "current"
      },
      {
        "street": "789 Elm Dr",
        "city": "Houston",
        "state": "TX",
        "zip": "77001",
        "type": "previous"
      }
    ],
    "demographics": {
      "age_range": "35-44",
      "gender": "male"
    },
    "property": {
      "address": "123 Main St, Austin, TX 78701",
      "owner": true,
      "type": "single_family",
      "assessed_value": 425000
    }
  }
}

Response Fields

FieldTypeDescription
nameobjectVerified full name
phonesarrayAll known phone numbers with type and primary flag
emailsarrayAll known email addresses with primary flag
addressesarrayCurrent and previous addresses
addresses[].typestringcurrent or previous
demographicsobjectAge range and gender estimates
propertyobjectProperty details if the person owns their current residence
property.ownerbooleanWhether they own (vs rent)

Resolution Quality

The more input you provide, the higher the confidence:

Input ProvidedTypical Confidence
Phone only0.70 - 0.85
Name + state0.50 - 0.70
Name + full address0.85 - 0.95
Phone + name0.90 - 0.98
Phone + name + address0.95 - 1.00

WARNING

Full Identity resolution may take 1-3 seconds longer than simpler lookups, as it chains multiple data sources in sequence.

Braidis Data Enrichment Platform