# Extract property addresses and GPS coordinates from Redfin

**Use case:** 

Get latitude, longitude, and full addresses for every listing in an area. Clean location data for maps, GIS, and dashboards.

## Input

```json
{
  "urls": [
    "https://www.redfin.com/zipcode/78704"
  ],
  "locations": [
    "20001",
    "Philadelphia",
    "New York"
  ],
  "sampleUrl": "https://www.redfin.com/city/15502/PA/Philadelphia/filter/min-beds=0,max-beds=4,guest-house,air-conditioning",
  "searchLimit": 200,
  "proxySettings": {
    "useApifyProxy": false
  },
  "onlyNew": false
}
```

## Output

```json
{
  "propertyId": {
    "label": "ID",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "unitNumber": {
    "label": "Unit",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "string"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "url": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Property Search Scraper](https://apify.com/mantisus/redfin-fast-scraper-per-results) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mantisus/redfin-fast-scraper-per-results) to learn more, explore other use cases, and run it yourself.