# Locus: Property Tax Appeal Window Scan

> Locus: Property Tax Appeal Window Scan 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-14).

Scans local public records and parcel rules to determine appeal window status, open questions, and next verification steps for a property tax assessment.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-appeal-window
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-property-tax-appeal-window-scan-dfbc3a76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JT1dF-JQMkyajqntdfJ_W

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-appeal-window-scan-dfbc3a76 -d '<json body>'
```

Example prompt: Can you scan public records and check the property tax appeal window for 123 Main Street in New York state — locality nyc_class1 — with a notice date of 2025-01-15?

## When to prefer this

Use this endpoint when you need to quickly determine property tax appeal eligibility windows and scan public-record status for a specific address, particularly in NYC (class 1 or other), Nassau, or Philadelphia jurisdictions. Prefer this over generic property data APIs when the specific goal is understanding appeal deadlines, open record questions, and parcel-level tax rules rather than property valuation or transaction history.

## Known failure modes

- Missing required 'state' or 'address' field returns a validation error
- Invalid date format for noticeDate returns a schema error
- Unsupported locality value outside the enum returns a 400 error
- Address not found in public records returns an empty records array with caveats
- Network timeout for slow jurisdictions may return incomplete data

## How this service works

Cited property-value appeal deadline arithmetic for a covered state. Perfect for: 'appeal deadline from my notice date', 'property-tax protest window'. Returns the rule, statute, source, computed dates when inputs support them, caveats, and verify-next. Never advice to appeal. Charge-free when the state/locality is not covered.

## Output

A JSON object containing a report ID, generation timestamp, a list of public-record findings (records array), and caveats explaining limitations or data gaps — indicating which questions are answered, which remain open, and what to verify next.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "year": {
   "type": "integer",
   "maximum": 2100,
   "minimum": 2000
  },
  "state": {
   "type": "string",
   "maxLength": 40,
   "minLength": 2
  },
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  },
  "locality": {
   "enum": [
    "nyc_class1",
    "nyc_other",
    "nassau",
    "philadelphia"
   ],
   "type": "string"
  },
  "noticeDate": {
   "type": "string",
   "format": "date",
   "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))$"
  },
  "propertyClass": {
   "type": "string",
   "maxLength": 80,
   "minLength": 1
  },
  "countyExtended": {
   "type": "boolean"
  },
  "revaluationYear": {
   "type": "boolean"
  }
 }
}
```

## 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-appeal-window-scan-dfbc3a76/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)
