# NYC Property Records by Address (5 Boroughs)

**Use case:** 

Look up New York City property records by address across all five boroughs — owner, assessed value, and property characteristics as JSON, from public NYC data.

## Input

```json
{
  "addresses": [
    "761 Clarence Avenue, Bronx, NY 10465"
  ],
  "parcelLookups": [],
  "county": "",
  "state": "",
  "includeHistory": true,
  "maxRecords": 50
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "owner_name": {
    "label": "Owner name",
    "format": "string"
  },
  "situs_address": {
    "label": "Property (situs) address",
    "format": "string"
  },
  "assessed_value": {
    "label": "Assessed value (USD)",
    "format": "number"
  },
  "last_sale_price": {
    "label": "Last sale price (USD)",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [US County Property Records API — Owner, Value, Tax & Sales](https://apify.com/shelvick/county-property-records) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shelvick/county-property-records) to learn more, explore other use cases, and run it yourself.