US Property Finder avatar
US Property Finder

Pricing

Pay per event

Go to Apify Store
US Property Finder

US Property Finder

Find property listings across multiple real estate websites automatically. Simply provide an address, and this actor will search for matching property URLs across top platforms like Zillow, Realtor, Trulia, and more.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Agenscrape

Agenscrape

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

6 hours ago

Last modified

Share

Find property listings across multiple real estate websites automatically. Simply provide an address, and this actor will search for matching property URLs.

What It Does

This actor searches top real estate websites (such as Zillow, Realtor, Trulia, and others) to find property listings that match your provided address.

Input

Provide the property address details:

{
"address": "9200 Sunset Blvd",
"city": "West Hollywood",
"state": "CA",
"zipCode": "90069",
"county": "Los Angeles"
}

Required Fields

  • address - Street address of the property (e.g., "9200 Sunset Blvd")
  • city - City name (e.g., "West Hollywood")
  • state - State code, 2 letters (e.g., "CA")
  • zipCode - ZIP code (e.g., "90069")

Optional Fields

  • county - County name (e.g., "Los Angeles")

Output

Returns an array of property URLs:

[
{
"source": "zillow",
"url": "https://www.zillow.com/homedetails/123456_zpid"
},
{
"source": "trulia",
"url": "https://www.trulia.com/p/ca/west-hollywood/9200-sunset-blvd"
},
{
"source": "realtor",
"url": "https://www.realtor.com/realestateandhomes-detail/M123456"
}
]

Output Fields

  • source - Name of the real estate website
  • url - Direct URL to the property listing

Use Cases

  • Property Research - Quickly find all online listings for a specific property
  • Real Estate Data Collection - Gather property URLs across multiple platforms
  • Lead Generation - Find properties listed on various real estate websites
  • Market Analysis - Compare property presence across different platforms
  • Automated Workflows - Integrate property URL discovery into your automation pipeline

How It Works

  1. You provide the property address details
  2. The actor searches top real estate websites
  3. Results are returned with property URLs

API Integration

This actor can be easily integrated into your applications using the Apify API:

const ApifyClient = require('apify-client');
const client = new ApifyClient({
token: 'YOUR_API_TOKEN',
});
const input = {
"address": "123 Main Street",
"city": "Los Angeles",
"state": "CA",
"zipCode": "90001"
};
const run = await client.actor("agenscrape/us-property-finder").call(input);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Best Practices

  • Complete Address: Provide as complete an address as possible for best results
  • Correct Formatting: Use standard address formats (e.g., "123 Main St" not "123 main street")
  • State Codes: Always use 2-letter state codes (e.g., "CA" not "California")
  • ZIP Codes: Include ZIP codes for more accurate results