Skip Trace
Find property owner contact information (phones, emails)
1 tools
Skip Trace Property
Write Idempotent
POST /v1/tools/batchdata/skipTraceProperty
Find property owner contact information (phone numbers, email addresses) via skip tracing. Returns persons associated with a property with phones ranked by quality. Identify property by address OR by APN + county.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
street | string | optional | Property street address |
city | string | optional | City name |
state | string | optional | Two-letter state code |
zip | string | optional | ZIP code |
apn | string | optional | Assessor Parcel Number (alternative to address, requires county or county_fips_code) |
county | string | optional | County name (required with apn if county_fips_code not provided) |
county_fips_code | string | optional | County FIPS code (required with apn if county not provided) |
Request
curl -X POST https://api.syncello.io/v1/tools/batchdata/skipTraceProperty \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Response
{
"results": {
"meta": {
"apiVersion": "v1",
"performance": {
"endTime": "2026-07-02T21:00:01.100Z",
"startTime": "2026-07-02T21:00:00.000Z",
"totalRequestTime": 1100
},
"requestId": "a1f4c9e2b7d3",
"results": {
"errorCount": 0,
"matchCount": 1,
"noMatchCount": 0,
"requestCount": 1
}
},
"persons": [
{
"name": {
"first": "Jane",
"last": "Doe",
"middle": "A"
},
"meta": {
"errorMessage": "",
"matched": true,
"error": false
},
"dnc": {
"tcpa": false
},
"death": {
"deceased": false
},
"litigator": false,
"phoneNumbers": [
{
"number": "5555550142",
"carrier": "Example Wireless",
"type": "Mobile",
"lastReportedDate": "2026-05-01",
"score": 92,
"tcpa": false,
"tested": true,
"dnc": false,
"reachable": true
},
{
"number": "5555550188",
"carrier": "Example Telecom",
"type": "Landline",
"lastReportedDate": "2024-11-15",
"score": 60,
"tcpa": false,
"tested": true,
"dnc": true,
"reachable": false
}
],
"bankruptcy": {
"bankruptcy": false,
"filingDate": null
},
"property": {
"owner": {
"name": {
"first": "Jane",
"last": "Doe",
"middle": "A",
"full": "Jane A Doe"
},
"mailingAddress": {
"street": "456 Oak Ave",
"city": "Phoenix",
"state": "AZ",
"zip": "85004"
}
},
"address": {
"state": "AZ",
"streetNoUnit": "456 Oak Ave",
"addressValidity": "valid",
"city": "Phoenix",
"houseNumber": "456",
"zip": "85004",
"formattedStreet": "456 Oak Ave",
"street": "456 Oak Ave",
"county": "Maricopa"
}
},
"mailingAddress": {
"street": "456 Oak Ave",
"unitType": "",
"houseNumber": "456",
"state": "AZ",
"city": "Phoenix",
"zip": "85004",
"formattedStreet": "456 Oak Ave",
"streetNoUnit": "456 Oak Ave",
"hash": "a1b2c3d4e5f6",
"zipPlus4": "1234",
"addressValidity": "valid",
"county": "Maricopa",
"unitNumber": ""
},
"emails": [
{
"tested": true,
"email": "jane.doe@example.com"
},
{
"tested": false,
"email": "j.doe@example.net"
}
],
"propertyAddress": {
"formattedStreet": "456 Oak Ave",
"street": "456 Oak Ave",
"addressValidity": "valid",
"zip": "85004",
"county": "Maricopa",
"houseNumber": "456",
"state": "AZ",
"streetNoUnit": "456 Oak Ave",
"city": "Phoenix",
"hash": "a1b2c3d4e5f6"
}
}
]
},
"status": {
"code": 200,
"text": "OK"
}
} Try It
Try it
Sign in to execute this tool
Sign In