# Look up a US property's facts by address

**Use case:** 

Type a US address and get the home's beds, baths, sqft, year built, lot size, and property type from Redfin — one structured record. Misses are free.

## Input

```json
{
  "address": "745 Garland Dr, Palo Alto, CA 94303",
  "source": "redfin",
  "useProxy": false
}
```

## Output

```json
{
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zip": {
    "label": "ZIP",
    "format": "string"
  },
  "beds": {
    "label": "Beds",
    "format": "integer"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "integer"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "integer"
  },
  "lotSizeSqft": {
    "label": "Lot (sqft)",
    "format": "integer"
  },
  "propertyType": {
    "label": "Type",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow & Redfin Property Data Scraper](https://apify.com/scrapebench/zillow-redfin-property-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapebench/zillow-redfin-property-scraper) to learn more, explore other use cases, and run it yourself.