Realtor Property Tax History avatar
Realtor Property Tax History

Pricing

Pay per usage

Go to Apify Store
Realtor Property Tax History

Realtor Property Tax History

Fetch property and tax history data from Realtor.com efficiently with this Apify actor. Supports multiple properties via IDs or URLs, async processing for faster results, and immediate data push. Includes comprehensive error handling and logging for smooth execution.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Realtor Scraper

Realtor Scraper

Maintained by Community

Actor stats

0

Bookmarked

11

Total users

1

Monthly active users

11 days ago

Last modified

Categories

Share

This Apify actor fetches property and tax history data from Realtor.com for multiple properties using property IDs or URLs.

Features

  • ✅ Fetch tax history for multiple properties simultaneously
  • ✅ Support both property IDs and property URLs
  • ✅ Async processing for better performance
  • ✅ Immediate data push (results available as they're fetched)
  • ✅ Comprehensive error handling and logging

Input Parameters

The actor accepts the following input:

{
"property_ids": ["1406828262", "1234567890"],
"property_urls": [
"https://www.realtor.com/realestateandhomes-detail/729-Bel-Air-Rd_Los-Angeles_CA_90077_M14068-28262?property_id=1406828262"
]
}

Parameters

ParameterTypeRequiredDescription
property_idsarrayNo*List of Realtor.com property IDs
property_urlsarrayNo*List of Realtor.com property URLs

*At least one of property_ids or property_urls must be provided. You can provide both.

Output

The actor outputs property and tax history data in the following format:

{
"property_id": "1406828262",
"address": "729 Bel Air Rd, Los Angeles, CA 90077",
"tax_history": [
{
"year": 2023,
"tax_amount": 50000,
"assessment": 5000000
}
],
"property_details": { ... }
}

Results are pushed to the dataset immediately as each property is processed.

Usage Example

Via Apify Console

  1. Go to your actor's input tab
  2. Add property IDs or URLs:
    {
    "property_ids": ["1406828262", "9876543210"],
    "property_urls": ["https://www.realtor.com/realestateandhomes-detail/..."]
    }
  3. Click "Start"

Error Handling

  • If a property ID or URL fails to fetch, the actor logs a warning and continues with the next property
  • API errors are logged with detailed error messages
  • The actor will not fail completely if some properties fail - it processes all inputs

Performance

  • Properties are processed sequentially to avoid rate limiting
  • Results are pushed immediately as they're fetched (no waiting for all to complete)
  • Async/await ensures efficient I/O operations