Skip to content

API Overview

Base URL

https://api.braidisdata.com/v1

All endpoints accept POST requests with JSON bodies and return JSON responses.

Endpoints

EndpointMethodCreditsDescription
/validate-phonePOST1Verify if a phone number is real and active
/caller-idPOST2Resolve a phone number to a name
/property-ownerPOST3Look up property owner by address
/phone-appendPOST3Find phone number from name + address
/reverse-phonePOST5Resolve phone to name + address
/full-propertyPOST8Full property resolution (owner + phone + email)
/full-identityPOST15Complete identity resolution from any fragment
/account/creditsGET0Check credit balance

Common Request Headers

http
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Common Response Fields

Every successful response includes:

json
{
  "success": true,
  "credits_used": 5,
  "credits_remaining": 995,
  "cached": false,
  "confidence": 0.94,
  "data": { ... }
}
FieldTypeDescription
successbooleanWhether the request succeeded
credits_usedintegerCredits consumed (0 if cached)
credits_remainingintegerYour remaining credit balance
cachedbooleanWhether this result was served from cache
confidencefloatMatch confidence score (0.0 - 1.0)
dataobjectThe enrichment results

Confidence Scores

ScoreMeaning
0.90 - 1.00High confidence — verified match
0.70 - 0.89Medium confidence — likely match
0.50 - 0.69Low confidence — possible match
Below 0.50Not returned (below threshold)

Braidis Data Enrichment Platform