VOOZH about

URL: https://apify.com/khadinakbar/skip-trace-property-owner

โ‡ฑ Skip Trace Scraper ยท Apify


๐Ÿ‘ Skip Trace Property Owner โ€” Phone, Email & Address Finder avatar

Skip Trace Property Owner โ€” Phone, Email & Address Finder

Pricing

Pay per usage

Go to Apify Store

Skip Trace Property Owner โ€” Phone, Email & Address Finder

Skip trace any US property address โ€” get owner name, phone numbers, email & mailing address from public records. The only skip trace tool on Apify.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

๐Ÿ‘ Khadin Akbar

Khadin Akbar

Maintained by Community

Actor stats

1

Bookmarked

188

Total users

42

Monthly active users

9 days ago

Last modified

Share

Skip Trace Property Owner โ€” Find Phone, Email & Mailing Address

The only skip trace tool on Apify Store. Look up any US property address and instantly get the owner's full name, phone numbers, email addresses, and mailing address โ€” the same data real estate wholesalers pay $0.07โ€“$0.15 per lookup for on BatchSkipTracing, PropStream, and DealMachine.

No subscription. No minimum. Pay $0.12 only when a result is found.

๐Ÿ’ก Works with Claude, ChatGPT, and any AI agent via the Apify MCP Server โ€” just say "skip trace these addresses" and your AI does the rest.


What is skip tracing in real estate?

Skip tracing is the process of finding a property owner's contact information โ€” typically their phone number, email address, and mailing address โ€” so you can reach out to them directly about buying their property. It's the #1 tool used by real estate wholesalers to contact motivated sellers before they list on the MLS.

This actor automates skip tracing at scale. Submit up to 500 property addresses per run and get back a clean, CRM-ready dataset in minutes.


What data does this skip trace tool extract?

FieldTypeDescription
owner_full_namestringFull legal name of current owner
phone_numbersarrayMobile + landline numbers
email_addressesarrayPersonal + work emails
owner_mailing_addressstringWhere the owner actually lives (absentee detection)
owner_sincestringYear owner has been associated with property
relativesarrayCo-owners or household members
lookup_statusstringfound / partial / not_found
property_addressstringOriginal input address (for matching)
source_urlstringPublic records page used
scraped_atISO datetimeTimestamp of lookup

The lookup_status field means you can instantly filter your list to only the records with full contact info before exporting to your dialer โ€” no manual cleanup.


How to use this skip trace tool

Option 1 โ€” Apify Console (no code):

  1. Click "Try for free" above
  2. Paste your address list (one per line) under "Property addresses to skip trace"
  3. Toggle phone/email on or off based on your campaign
  4. Click Start โ€” results stream in real time
  5. Export as JSON or CSV directly into your CRM, dialer, or spreadsheet

Option 2 โ€” AI agent (Claude / ChatGPT):

Connect via the Apify MCP Server and just say:

"Skip trace these 50 addresses and return anyone with a phone number" "Find the owner of 123 Main St Dallas TX and get their phone and email" "Run skip traces on my tax delinquent list and give me absentee owners only"

Your AI automatically calls this actor, processes the results, and returns structured data โ€” no manual work required.

Option 3 โ€” REST API:

curl-X POST "https://api.apify.com/v2/acts/khadinakbar~skip-trace-property-owner/runs"\
-H"Authorization: Bearer YOUR_TOKEN"\
-H"Content-Type: application/json"\
-d'{
"addresses": [
"123 Main St, Dallas, TX 75201",
"456 Oak Ave, Austin, TX 78701"
],
"includePhone": true,
"includeEmail": true,
"maxResults": 100
}'

How much does skip tracing cost here vs. competitors?

ServicePrice per lookupSubscription required?Works with AI agents?
This actor$0.12NoYes (MCP)
BatchSkipTracing$0.07โ€“$0.15YesNo
PropStreamBundled in $99/moYesNo
DealMachine$0.10โ€“$0.15YesNo
Batch Leads$0.12โ€“$0.18YesNo

Key difference: You only pay when a result is actually found (not_found records are free). With subscription tools, you pay whether or not data exists for that address.


Real estate use cases

Driving for dollars lists. You've got 200 addresses from driving neighborhoods โ€” skip trace them all in one run. Export to your dialer. Start calling the same afternoon.

Tax delinquent / pre-foreclosure. County lists give you addresses but no contact info. Run them through this actor and you've got phone numbers before anyone else calls.

Absentee owner targeting. When owner_mailing_address โ‰  property_address, you've found a landlord who doesn't live at the property โ€” the highest-converting segment for wholesale deals. Filter automatically from the output.

Vacant property outreach. Combine with a driving-for-dollars app, skip trace the addresses, and reach out to owners before they even think about listing.

List stacking and enrichment. Take any existing motivated seller list from Propstream, Listsource, or ATTOM and append phone + email via this actor in batch.

AI-powered acquisition pipeline. Connect to Claude or ChatGPT via MCP. Your AI agent skip traces addresses, qualifies leads based on owner data, and drafts personalized outreach โ€” a fully automated wholesale pipeline.


How to skip trace property owners via JavaScript

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'YOUR_TOKEN'});
const run =await client.actor('khadinakbar/skip-trace-property-owner').call({
addresses:[
'123 Main St, Dallas, TX 75201',
'456 Oak Ave, Austin, TX 78701',
],
includePhone:true,
includeEmail:true,
maxResults:500,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
// Filter to only records where contact was found
const found = items.filter(r=> r.lookup_status ==='found');
console.log(`Found contact info for ${found.length} of ${items.length} addresses`);

How to skip trace property owners via Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_TOKEN')
run = client.actor('khadinakbar/skip-trace-property-owner').call(run_input={
'addresses':[
'123 Main St, Dallas, TX 75201',
'456 Oak Ave, Austin, TX 78701',
],
'includePhone':True,
'includeEmail':True,
})
items =list(client.dataset(run['defaultDatasetId']).iterate_items())
# Get absentee owners (mailing address differs from property)
absentee =[
r for r in items
if r.get('owner_mailing_address')and
r.get('owner_mailing_address')!= r.get('property_address')
]
print(f'Found {len(absentee)} absentee owners')

How to integrate with Make.com, Zapier, or n8n

Make.com: Use the Apify โ†’ Run Actor module. Pass your address list from a Google Sheet or Airtable. When the run completes, use the Apify โ†’ Get Dataset Items module and map the output to your CRM or dialer.

Zapier: Trigger from a Google Sheet row. Use the Apify Run Actor action. When complete, use a Formatter step and push to HubSpot, GoHighLevel, or any webhook.

n8n: Use the Apify node. Connect addresses from your database, run skip traces, and route results to your outreach platform automatically.


FAQ

Q: How accurate is the data? All data is sourced from public records databases. Expect 60โ€“80% hit rates on residential properties, consistent with what BatchSkipTracing and similar services achieve on the same underlying public data. Commercial properties owned by LLCs will return the entity name with limited personal contact info.

Q: Is skip tracing legal? Yes โ€” this actor only extracts publicly available information that anyone can access by visiting these websites manually. Property ownership records are public record in all 50 US states. For outreach compliance, always honor do-not-call requests and comply with TCPA regulations. See Apify's web scraping legality guide.

Q: Can I process more than 500 addresses at once? Yes โ€” run multiple jobs in parallel via the API or scheduler. Use Apify's scheduler to run nightly on new lists and webhook results to your CRM automatically.

Q: What does "partial" status mean? Owner name was found but no phone or email. Useful for direct mail campaigns to the property address. Filter these separately in your export.

Q: Why do I need residential proxies? Public records sites block datacenter IPs at the CDN level. The actor handles this automatically using Apify Residential proxies โ€” no configuration needed.

Q: Can I use this with Claude or ChatGPT? Yes. Connect via the Apify MCP Server and your AI agent can skip trace addresses directly from natural language commands โ€” no code required.

Q: Do you offer bulk pricing? The current price is $0.12 per found result across all volumes. Not-found results are always free. For enterprise volume needs, contact support.


Integrations

CRM: HubSpot, GoHighLevel, Salesforce, Podio, REsimpli Dialers: BatchDialer, Mojo Dialer, CallTools, readymode AI Agents: Claude (via Apify MCP), ChatGPT, Cursor, any MCP-compatible agent Automation: Make.com, Zapier, n8n, Pipedream Real estate platforms: REISift, Propstream, DealMachine (as enrichment layer)


Built for real estate investors who move fast. Skip trace your list, make your calls, close your deals.

You might also like

Skip Trace

twoapi/skip-trace

Skip Trace | $6.5/1K | People Search, Address & Phone

apivault_labs/skip-trace-people-finder

Skip tracing & people search across the US. Look up anyone by name, address or phone and get current + past addresses, phone numbers, relatives, aliases and a profile link. Real-time public records, no subscription or API key. Flat $6.5/1K, pay only for matches. Lawful B2B use only.

59

5.0

Skip Trace People Search

brilliant_gum/skip-trace-people-search

Find anyone in the US โ€” phones, emails, addresses, relatives & aliases. Searches ThatsThem, Radaris & Spokeo simultaneously and merges results into one clean record. 4 search modes: name, phone, email, address.

๐Ÿ‘ User avatar

Yuliia Kulakova

75

Skip Trace People Search

parseforge/skip-trace-scraper

Find people across the United States by name and state. Pull full names, all known addresses with street, city, state, ZIP, plus profile URLs and name variants. City-level pagination across the top 10 cities per state. Export to JSON, CSV, or Excel for due diligence and skip tracing.

Skip Trace

one-api/skip-trace

Locate hard-to-find individuals with our powerful skip trace/tracing API. TruePeopleSearch, Fastpeoplesearch, Lead Finder, Truthfinder, Spokeo, BeenVerified, PeopleFinders. Please leave 5 stars โญ๏ธ if found useful. If you do not receive any results, please contact: ๐Ÿ“ฌ support@realtyapi.io

7.1K

3.4

Property Tax Delinquent Lead Aggregator

george.the.developer/property-tax-delinquent-leads

Multi-county tax delinquent + pre-foreclosure property aggregator with parcel, owner, balance, and skip-trace search hints. Built for real estate wholesalers and pre-foreclosure investors. Pay per record.

12

Property Lead Generator

direct_duty/property-lead-generator

Unlock off-market real estate deals by automatically scraping and parsing foreclosure notices from Dallas County. Get enriched leads with addresses, owner names, and skip-tracing links (Zillow, Google). Perfect for wholesalers and investors.

Spokeo People Search Scraper

jungle_synthesizer/skip-trace-people-search-scraper

Search for people by name and US state on Spokeo's public directory. Returns full names, all known addresses (street, city, state, ZIP), name variants, profile URLs, and related persons. City-level pagination delivers 100+ unique results per name-state query.

๐Ÿ‘ User avatar

BowTiedRaccoon

14

TruePeopleSearch Contact Finder

scrapyspider/truepeoplesearch-contact-finder

Find contact information for people using TruePeopleSearch. Search by name and address to extract phone numbers, email addresses, age, current and previous residential addresses. Smart name matching with retry logic. Requires ScrapFly API key. Export as JSON, CSV, or Excel.

113

Personal Data Exposure Report โ€” Privacy Operations Intelligence

ryanclinton/personal-data-exposure-report

A Privacy Operations Intelligence API. Per subject, one call returns where data is exposed, a severity risk score, the threat scenarios it enables, a remediation queue ranked by impact-per-minute, and monitoring that tracks whether removals stick. For privacy and executive-protection teams.

38

5.0