One REST endpoint. 50+ data points. Owner contact with DNC flags. $0.20 per hit. Send a property address, get back owner names, phones, emails, property value, equity, mortgage, features, and compliance flags -- all in a single JSON response.
150M+
U.S. Properties
50+
Data Fields
500
Requests/Min
$0.20
Per Hit
$0 on miss -- you only pay when data is returned
Looking for the bigger picture? See our property intelligence overview — every data category covered, plus how pay-per-hit compares to subscription incumbents.
One POST request. One JSON response. Property data and owner contact in under 2 seconds.
/v1/api/property-search/lookup/
# Request -- look up property data and owner contact by address
curl -X POST https://www.tracerfy.com/v1/api/property-search/lookup/ \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"address": "742 Evergreen Terrace",
"city": "Springfield",
"state": "IL",
"zip_code": "62704"
}'
# Response (key fields shown -- full response includes 50+ fields)
{
"hit": true,
"credits_deducted": 10,
"skip_trace_hit": true,
"property": {
"address": "4521 E Monte Cristo Ave",
"city": "Phoenix",
"state": "AZ",
"zip_code": "85032",
"county": "Maricopa",
"apn": "123-45-6789",
"property_type": "SFR",
"year_built": 1978,
"beds": 4,
"baths": 2.5,
"building_size_sqft": 2140,
"lot_size_sqft": 8712,
"estimated_value": 485000,
"estimated_equity": 298000,
"equity_percent": 61.4,
"open_mortgage_balance": 134500,
"lender_name": "Wells Fargo",
"has_pool": false,
"has_garage": true,
"roof_material": "Composition Shingle",
"flood_zone": false,
"absentee_owner": false,
"high_equity": true,
"pre_foreclosure": false,
"foreclosure": false,
"tax_delinquent": false,
"tax_delinquent_year": null,
"tax_lien": false,
"quit_claim": false,
"mls_sold": false,
"mls_failed": false,
"area_median_income": 68200
},
"owners": [
{ "first_name": "JANET", "last_name": "MORRIS" },
{ "first_name": "ROBERT", "last_name": "MORRIS" }
],
"mailing_address": {
"address": "4521 E Monte Cristo Ave",
"city": "Phoenix",
"state": "AZ",
"zip": "85032"
},
"contacts": {
"phones": [
{ "number": "4805551234", "type": "Mobile", "dnc": false, "tcpa": false, "carrier": "T-Mobile" },
{ "number": "4805559876", "type": "Mobile", "dnc": true, "tcpa": false, "carrier": "AT&T" },
{ "number": "4805550100", "type": "Landline", "dnc": false, "tcpa": false, "carrier": "CenturyLink" }
],
"emails": [
{ "email": "[email protected]" }
],
"litigator": false,
"has_contact": true,
"contact_clean": false
}
}
50+ fields organized into three categories -- property intelligence, owner contact, and DNC/TCPA flags
has_contact flagcontact_clean flag$0.20 per hit. $0 on miss. Optional monthly plans. No monthly minimum.
$0.20
per successful lookup (10 credits)
$0 on miss. Optional monthly plans. No commitment.
Credits never expire
No monthly minimum
Auto top-up available
| Provider | Pricing Model | Minimum |
|---|---|---|
| Enterprise providers | $1,000+/mo subscription | Annual contract |
| Mid-tier providers | $500/mo minimum | Monthly commitment |
| Tracerfy | $0.20 per hit | None |
Buy credits when you need them. Use them when you want. They never expire.
Four ways developers use the property data API in production
Auto-enrich addresses as they enter your pipeline. When a new property hits your CRM, call the lookup endpoint to attach owner names, phones with DNC flags, emails, and mailing address -- zero manual data entry.
Instant property intelligence before making offers. Get estimated value, equity, mortgage balance, tax status, and ownership flags in one call -- no spreadsheets, no manual research.
Track property values and ownership changes across your portfolio. Schedule periodic lookups to detect equity shifts, new mortgages, pre-foreclosure status, or ownership transfers.
Embed property data in your own product. Give your users property intelligence, owner contacts, and DNC/TCPA flags without building the data layer yourself. Our API powers your branded experience.
Everything you need to know before you integrate
| Authentication | API key via Authorization: Bearer YOUR_API_KEY header |
| Rate Limit | 500 requests per minute per account |
| Response Format | JSON |
| Coverage | 150M+ U.S. residential properties across all 50 states |
| Property Types | SFR, MFR, Condo, Townhouse, Mobile, Land |
| Uptime | 99.9% target |
| SSL | Required (HTTPS only) |
| Response Time | Under 2 seconds (typical) |
| Cost | 10 credits ($0.20) per hit, 0 on miss |
Common questions from developers integrating the property data API
Authorization header as Bearer YOUR_API_KEY. You can generate an API key from your Tracerfy dashboard after creating a free account. Keys can be rotated or revoked at any time from the dashboard.
"hit": false with zero credits deducted. Your application can handle misses programmatically by checking the hit field in the JSON response.
property_type field in the response tells you exactly what type of property was matched.
Create a free account, generate your API key, and make your first lookup in minutes. Full documentation and code examples available. Not a developer? Try our web-based property lookup instead.
Get Your API Key Full API Reference