# Locus Property Tax Context

> Locus Property Tax Context is a paid API for AI agents from api.locus.report, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns ACS 2023 median real-estate taxes paid, median home value, and implied effective property tax rate at ZIP, county, and state level for a given US address or coordinates.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-property-tax-context
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-property-tax-context-688ce2c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sfbH3j7BP4ZBOpeLCUXN6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability locus-property-tax-context-688ce2c1 -d '<json body>'
```

Example prompt: What's the effective property tax rate context for 742 Evergreen Terrace, Springfield, IL — is the tax burden typical for that ZIP and county compared to the state median?

## When to prefer this

Use this endpoint when you need to contextualize a property tax bill or assess the typical tax burden for a US location at ZIP, county, or state level using authoritative ACS data. Prefer this over general web search when you need structured, comparable rate benchmarks. Not suitable when you need the specific assessed value or actual tax bill for an individual parcel — use a parcel-record endpoint for that.

## Known failure modes

- Address cannot be geocoded or matched to a US jurisdiction — returns error or null coverage
- Input address is outside the United States — no data available
- ZIP or county not covered in ACS 2023 release — partial or null response
- Malformed coordinates outside valid US range — validation error
- Missing both address and coordinates — request rejected

## How this service works

Property tax burden context: ACS 2023 median real-estate taxes paid, median home value, and the effective rate they imply at ZIP, county, and state, with the Lincoln Institute 50-state study linked. Perfect for: 'effective property tax rate here', 'is this tax bill typical for the county'. Locality estimate, not this parcel's bill. National. Free at /tools/call.

## Output

Returns median real-estate taxes paid, median home value, and the implied effective tax rate for the ZIP code, county, and state corresponding to the input address or coordinates, sourced from ACS 2023 data. Also includes a link to the Lincoln Institute 50-state study. This is a locality-level statistical estimate, not the specific parcel's actual tax bill.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  },
  "latitude": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "longitude": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "locus_example",
  "caveats": [
   "Example artifact; not live data."
  ],
  "records": [],
  "generatedAt": "2026-01-01T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/locus-property-tax-context-688ce2c1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.locus.report](https://www.zero.xyz/host/api.locus.report/llms.txt)
