# Locus Property Tax Report

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

Retrieves government-sourced property tax records for a U.S. address, cited to official sources

## Facts

- Endpoint: POST https://api.locus.report/api/locus-property-tax
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-property-tax-report-c5d4f375
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L6bJLMkO_9_zd8w9-NIZW

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-report-c5d4f375 -d '<json body>'
```

Example prompt: Pull up the official government property tax records for 742 Evergreen Terrace, Springfield, IL 62704 — I want everything cited to the source.

## When to prefer this

Use this endpoint when you need property tax data specifically, with government-source citations, for a U.S. address. It is the right choice when an agent needs verified, authoritative tax assessment records rather than estimated or aggregated third-party data. Prefer this over general property lookup tools when source traceability and official citation matter (e.g., due diligence, legal, or investment research).

## Known failure modes

- Address not found or outside U.S. coverage — empty records array returned
- ZIP code provided without street address yields lower-resolution parcel data
- Ambiguous address string may match wrong parcel — full street address recommended
- Government source temporarily unavailable — may result in partial records or caveat flags
- Invalid or malformed address/ZIP input returns error response

## How this service works

Verified residential US property record for one street address: assessed value, actual annual property tax, 5yr tax history, effective rate, deed/transfer history, and an owner-occupied (homestead-proxy) signal. Sourced from RentCast (county assessor + recorder records); not an official bill or valuation; never owner names/mailing. Commercial/uncovered addresses return a free charge-free diagnostic. npx @velinussage/locus-agent-skill add.

## Output

A JSON object containing property tax records for the given U.S. address or ZIP code, each record cited to its originating government source, along with a generation timestamp, unique report ID, and any applicable caveats about data coverage or availability.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  }
 }
}
```

## 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-report-c5d4f375/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)
