# Download a Los Angeles County property tax history dataset

**Use case:** 

Los Angeles County listings with 20-plus years of assessed values and taxes paid per parcel, plus parcel numbers and county fields, delivered as CSV or JSON

## Input

```json
{
  "mode": "custom_search",
  "metro": "Phoenix",
  "bounds": {
    "north": 34.34,
    "east": -118.12,
    "south": 33.7,
    "west": -118.67
  },
  "depth": "enriched",
  "source": "agent",
  "minListings": 1000,
  "minEnriched": 500,
  "dedupZpids": [],
  "dedupMlsIds": [],
  "timeoutSecs": 7200
}
```

## Output

```json
{
  "zpid": {
    "label": "Zillow property ID",
    "format": "integer"
  },
  "detail_url": {
    "label": "Listing URL",
    "format": "string"
  },
  "address_street": {
    "label": "Street address",
    "format": "string"
  },
  "address_city": {
    "label": "City",
    "format": "string"
  },
  "address_state": {
    "label": "State",
    "format": "string"
  },
  "address_zipcode": {
    "label": "ZIP code",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "status_text": {
    "label": "Status text",
    "format": "string"
  },
  "is_foreclosure": {
    "label": "Foreclosure",
    "format": "integer"
  },
  "foreclosure_is_preforeclosure": {
    "label": "Preforeclosure",
    "format": "integer"
  },
  "foreclosure_is_auction": {
    "label": "Auction flag",
    "format": "integer"
  },
  "foreclosure_is_bank_owned": {
    "label": "Foreclosure bank owned",
    "format": "integer"
  },
  "foreclosing_bank": {
    "label": "Foreclosing bank",
    "format": "string"
  },
  "foreclosure_default_filing_date": {
    "label": "Filing date",
    "format": "string"
  },
  "foreclosure_auction_date": {
    "label": "Auction date",
    "format": "string"
  },
  "foreclosure_loan_amount": {
    "label": "Loan amount",
    "format": "string"
  },
  "foreclosure_past_due": {
    "label": "Past due amount",
    "format": "string"
  },
  "is_fsbo": {
    "label": "FSBO",
    "format": "integer"
  },
  "is_non_owner_occupied": {
    "label": "Non-owner occ.",
    "format": "integer"
  },
  "parcel_number": {
    "label": "Parcel number",
    "format": "string"
  },
  "parcel_id": {
    "label": "Parcel ID",
    "format": "string"
  },
  "county_name": {
    "label": "County",
    "format": "string"
  },
  "tax_annual_amount": {
    "label": "Annual tax",
    "format": "string"
  },
  "tax_assessed_value": {
    "label": "Assessed value",
    "format": "string"
  },
  "tax_history_years": {
    "label": "Tax history years",
    "format": "integer"
  },
  "price_history_events": {
    "label": "Price history events",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Leads Scraper: Agents, Price & Tax History, FSBO](https://apify.com/germane_binoculars/zillow-leads-property-data.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/germane_binoculars/zillow-leads-property-data.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/germane_binoculars/zillow-leads-property-data.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
