# Property Tax: 50-State Rates, Exemptions, Appeal Rates (`andrew_avina/property-tax-intelligence-mcp`) Actor

Investor property tax rates for all 50 states + counties. Homestead exemptions (investors excluded), appeal deadlines, appeal success rates. TX: 65-70% appeal success (highest US). HI: 0.27% (lowest). NJ: 2.23% (highest). MCP-native.

- **URL**: https://apify.com/andrew\_avina/property-tax-intelligence-mcp.md
- **Developed by:** [Andrew Avina](https://apify.com/andrew_avina) (community)
- **Categories:** MCP servers, Business
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$5.00 / 1,000 result item returneds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

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).


# README

## Property Tax Intelligence MCP

**Effective property tax rates, assessment ratios, homestead exemptions, appeal windows, and investment impact for all 50 US states + 19 major counties.**

Returns investor-specific data: the difference between owner-occupied and investor tax burdens, appeal success rates, how tax affects NOI/cash flow, and an investor rating (A+ to D+) that factors in all these variables.

---

### What It Returns

#### State Records

| Field | Description |
|-------|-------------|
| `record_type` | "state" |
| `state` | Two-letter state code |
| `state_full` | Full state name |
| `effective_rate_pct` | Median effective rate (tax paid ÷ home value × 100) — the real burden |
| `nominal_rate_pct` | Statutory levy/mill rate (before assessment ratio adjustments) |
| `assessment_ratio` | Assessed value ÷ market value (e.g., 0.10 = assessed at 10% of value) |
| `median_home_value` | 2024 statewide median home value ($) |
| `median_annual_tax` | Statewide median annual property tax bill ($) |
| `homestead_exemption` | Owner-occupied exemption amount ($) or false — investors typically don't qualify |
| `senior_freeze_available` | Whether a senior citizen freeze/circuit breaker program exists |
| `appeal_window_days` | Days to file an assessment appeal after notice |
| `appeal_success_rate_pct` | Industry-estimated % of appeals that reduce the tax bill |
| `national_rank` | Property tax rank: 1 = highest burden, 51 = lowest (DC included) |
| `investor_rating` | A+ to D+ composite investor rating (tax burden perspective) |
| `estimated_annual_tax_at_query_value` | Projected annual tax at user-supplied `home_value` |
| `estimated_monthly_tax_at_query_value` | Monthly equivalent of above |
| `tax_as_pct_of_gross_rent` | Tax bill as % of estimated gross rent (at 0.8% rent/price ratio) |
| `investor_notes` | Key investor-specific caveats and warnings |

#### County Records

| Field | Description |
|-------|-------------|
| `record_type` | "county" |
| `county` | County name |
| `state` | Two-letter state code |
| `city_served` | Primary city/metro served |
| `effective_rate_pct` | County effective rate (often differs materially from state avg) |
| `median_home_value` | County median home value |
| `median_annual_tax` | County median annual tax bill |
| `appeal_window_days` | Days to appeal |
| `appeal_success_rate_pct` | County-level appeal success rate |
| `estimated_annual_tax_at_query_value` | Tax projection at user `home_value` |
| `estimated_monthly_tax_at_query_value` | Monthly equivalent |
| `tax_as_pct_of_gross_rent` | Tax as % of gross rent |
| `investor_notes` | County-specific investor intelligence |

---

### Investor Rating (A+ to D+)

| Rating | Description |
|--------|-------------|
| **A+** | Exceptional — effective rate < 0.40%; near-zero tax burden |
| **A** | Excellent — effective rate 0.40–0.65%; low burden |
| **A-** | Very Good — effective rate 0.65–0.80%; below average |
| **B+** | Good — effective rate 0.80–1.00%; manageable |
| **B** | Average — effective rate 1.00–1.30%; moderate burden |
| **B-** | Below Average — effective rate 1.30–1.60%; elevated |
| **C+** | Poor — effective rate 1.60–1.80%; high burden |
| **C** | Bad — effective rate 1.80–2.00%; very high |
| **C-** | Very Bad — effective rate 2.00–2.20%; punitive |
| **D+** | Severe — effective rate > 2.20%; among worst in US |

Rating also considers: homestead benefit availability for investors, appeal success rates, rate trajectory, and investor-specific surcharges.

---

### Input Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `state` | string | No | Filter by state code (e.g., "TX", "FL") — returns all counties in that state too |
| `county` | string | No | Filter by county name (partial match) |
| `city` | string | No | Filter county records by city served |
| `effective_rate_max` | number | No | Maximum effective rate % to include (e.g., 1.0 for ≤1%) |
| `investor_rating_min` | string | No | Minimum investor rating: "A+", "A", "B+", "B", etc. |
| `home_value` | number | No | Custom home value for tax projection calculations |
| `include_county_data` | boolean | No | Include county-level records (default: true) |
| `sort_by` | string | No | Sort: `effective_rate` (asc, default), `effective_rate_desc`, `investor_rating`, `annual_tax`, `appeal_success` |
| `limit` | integer | No | Max records to return (default: 50) |

---

### Example Inputs

**Best investor states (rate ≤ 1%):**
```json
{
  "effective_rate_max": 1.0,
  "investor_rating_min": "B+",
  "sort_by": "investor_rating",
  "include_county_data": false,
  "limit": 20
}
````

**Everything about Texas (state + all major counties):**

```json
{
  "state": "TX",
  "home_value": 350000
}
```

**Florida counties only:**

```json
{
  "state": "FL",
  "include_county_data": true,
  "sort_by": "effective_rate"
}
```

**Counties with best appeal success rates:**

```json
{
  "sort_by": "appeal_success",
  "include_county_data": true,
  "limit": 15
}
```

***

### Example Output

```json
{
  "record_type": "state",
  "state": "TN",
  "state_full": "Tennessee",
  "effective_rate_pct": 0.64,
  "nominal_rate_pct": 0.70,
  "assessment_ratio": 0.25,
  "median_home_value": 309000,
  "median_annual_tax": 1974,
  "homestead_exemption": 25000,
  "senior_freeze_available": true,
  "appeal_window_days": 30,
  "appeal_success_rate_pct": 45,
  "national_rank": 40,
  "investor_rating": "A",
  "estimated_annual_tax_at_query_value": 2240,
  "estimated_monthly_tax_at_query_value": 187,
  "tax_as_pct_of_gross_rent": 7.5,
  "investor_notes": "No state income tax; low property tax; Nashville surging; Gatlinburg/Pigeon Forge STR mecca; investor-friendly state"
}
```

***

### States Ranked: Best to Worst for Investors

| Rank | State | Effective Rate | Investor Rating | Key Note |
|------|-------|---------------|-----------------|----------|
| 1 (best) | Hawaii | 0.27% | A+ | Lowest in US; Oahu splits residential vs investor |
| 2 | Alabama | 0.37% | A+ | 10% assessment ratio; near-zero burden |
| 3 | Louisiana | 0.51% | A | Low burden; short appeal window |
| 4 | Delaware | 0.54% | A | No income tax; no homestead for investors |
| 5 | Colorado | 0.49% | B+ | Low rate but rising post-2020; Denver STR restrictions |
| 6 | Tennessee | 0.64% | A | No income tax; STR mecca; investor-friendly |
| 7 | Arizona | 0.60% | A | Investor assessed at 18% vs 10% owner — know the split |
| 8 | Nevada | 0.59% | A | No income tax; 3%/yr cap |
| … | … | … | … | … |
| 45 | Illinois | 2.08% | D+ | Pension crisis; Chicago appeals necessary |
| 46 | New Hampshire | 2.09% | C- | Property tax IS the state tax |
| 47 (worst) | New Jersey | 2.23% | D+ | Highest effective rate in US |

***

### Critical Investor Distinctions

#### Homestead Exemptions Don't Apply to Investors

Most states offer significant homestead exemptions for owner-occupied properties. **Investors typically pay the full rate** or a higher investor-tier rate. Examples:

- **South Carolina**: Owner-occupied assessed at 4%; investor-owned at 6% — 50% higher
- **Arizona**: Owner-occupied at 10%; investor at 18% — 80% higher
- **Florida**: Save Our Homes caps owner-occupied increases at 3%/yr; investors get **no cap**
- **Indiana**: Homestead deduction ~$45K; investors pay nearly double the effective rate

#### Texas: Always Appeal

Texas has the **highest appeal success rate** (65–70%) of any major state. The 10% annual cap on appraised value increases means values can be locked below market — but only if you appeal consistently. Budget for appeal fees in your underwriting.

#### California: Prop 13 Advantage Accrues Over Time

New California buyers pay the full ~1.25% rate on purchase price. But the 2%/yr increase cap means long-hold investors see a massive effective rate decrease over time relative to market value appreciation. A property bought in 2005 may have an effective rate of 0.3% today.

***

### Data Sources

- **Lincoln Institute of Land Policy** — 50-state effective property tax rates (2023–2024)
- **Tax Foundation** — State property tax rankings and analysis
- **County assessor websites** — Major county effective rates and appeal data
- **State legislative databases** — Homestead exemption and senior freeze programs

***

### Use Cases

- **Pre-acquisition underwriting** — plug effective rate into NOI/cash flow models
- **State comparison for portfolio allocation** — rank states by investor tax burden
- **Appeal strategy** — identify counties with highest appeal success rates before filing
- **Homestead vs investor rate gap analysis** — understand the true cost for non-owner-occupied properties
- **AI agent deal scoring** — feed tax data into automated investment analysis

***

### Related Actors in the Real Estate Suite

- **[Real Estate Investment Intelligence MCP](../real-estate-intelligence-mcp/)** — Property listings + deal scoring
- **[Mortgage Rate Intelligence MCP](../mortgage-rate-intelligence-mcp/)** — Current rates + payment calculator
- **[Rentcast Rental Market Intelligence MCP](../rentcast-market-mcp/)** — LTR rent estimates + vacancy rates
- **[STR Market Intelligence MCP](../str-market-intelligence-mcp/)** — Airbnb/VRBO ADR and occupancy data

## Actor input object example

```json
{}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("andrew_avina/property-tax-intelligence-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("andrew_avina/property-tax-intelligence-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call andrew_avina/property-tax-intelligence-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=andrew_avina/property-tax-intelligence-mcp",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Property Tax: 50-State Rates, Exemptions, Appeal Rates",
        "description": "Investor property tax rates for all 50 states + counties. Homestead exemptions (investors excluded), appeal deadlines, appeal success rates. TX: 65-70% appeal success (highest US). HI: 0.27% (lowest). NJ: 2.23% (highest). MCP-native.",
        "version": "0.0",
        "x-build-id": "BxbECtiw5eNh9czz3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/andrew_avina~property-tax-intelligence-mcp/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-andrew_avina-property-tax-intelligence-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/andrew_avina~property-tax-intelligence-mcp/runs": {
            "post": {
                "operationId": "runs-sync-andrew_avina-property-tax-intelligence-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/andrew_avina~property-tax-intelligence-mcp/run-sync": {
            "post": {
                "operationId": "run-sync-andrew_avina-property-tax-intelligence-mcp",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {}
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
