ScraperCity logo

Property Lookup API Documentation

Property Lookup

Get property details, estimated home value, price history, and optionally owner contact info for any US address

$0.15 per property (+$0.10 for owner contact)POST /api/scrape/property-lookup

Parameters

NameTypeRequiredDescription
addressesstring[]RequiredArray of property addresses to look upExample: ["123 Main St, Dallas, TX 75201", "456 Oak Ave, Austin, TX 78701"]
includeOwnerContactbooleanOptionalAdd owner name, phone, and email (+$0.10/property)Default: falseExample: true
fileNamestringOptionalCustom filename for exportExample: Dallas_Properties

Examples

Basic property lookup

curl -X POST https://app.scrapercity.com/api/scrape/property-lookup \
  -H "Content-Type: application/json" \
  -d '{
    "addresses": ["123 Main St, Dallas, TX 75201"]
  }'

Property lookup with owner contact info

curl -X POST https://app.scrapercity.com/api/scrape/property-lookup \
  -H "Content-Type: application/json" \
  -d '{
    "addresses": [
      "123 Main St, Dallas, TX 75201",
      "456 Oak Ave, Austin, TX 78701"
    ],
    "includeOwnerContact": true,
    "fileName": "Texas_Properties"
  }'

Use Cases

  • Real estate investor property research
  • Wholesale deal analysis with owner contact
  • Comparable property analysis (comps)
  • Property valuation for buying/selling decisions
  • Direct mail campaigns to property owners
  • Find property owner contact info for outreach

Best Practices

  • Include full address with city, state, and zip for best results
  • Base cost is $0.15 per property
  • Owner contact adds $0.10 per property (total $0.25)
  • Returns estimated home value, price history, tax history, comps, schools
  • Owner contact includes name, mailing address, phones, emails
  • Two separate jobs created when owner contact is checked
  • Can be cancelled while running

Every scrape returns a runId. Poll GET /api/v1/scrape/status/{runId} until it completes, then download via GET /api/downloads/{runId}?format=csv.

Authenticate every request with Authorization: Bearer YOUR_API_KEY. See the full API reference for authentication, rate limits and error codes.