$ man property-tax-assessment
/property-tax-assessment
PRICE / CALL
$0.01
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
localeCATEGORY
uncategorized
STATUS
● live
NAME
property-tax-assessment — searches county assessor records by address or parcel id for owner, assessed value, and property details
SYNOPSIS
POST https://x402.agentutility.ai/property-tax-assessment
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Searches county assessor records by address or parcel ID for owner, assessed value, and property details. Covers open-data assessor datasets including NYC PLUTO, SF Assessor Roll, and Cook County (Chicago); search by street address or parcel/BBL/APN identifier. Returns parcel id, owner, assessed and market value, building area (sqft), lot size, year built, zoning code, and a permalink to the source open-data portal. Open-data, CC0-licensed sources only; no proprietary commercial assessor feed. Use it as a property tax assessor lookup, parcel record search, owner-name lookup, lot-and-block lookup, or a zoning + sqft + year-built check for real-estate due diligence.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| county | string | County dataset to query. 'nyc' = NYC Department of Finance PLUTO, 'sf' = SF Assessor Recorded Sales Roll, 'chicago' = Cook County Assessor. enum: nyc · sf · chicago | required |
| address | string | Street address to search (e.g. '350 5 AVENUE'). Tokenised against the dataset's address column. Mutually optional with 'parcel'. | optional |
| parcel | string | Parcel identifier — NYC BBL (10-digit), SF Block-Lot, or Cook County PIN (14-digit). Matches an exact record. | optional |
| limit | number | Max records to return (1-50). Default 10. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| total | string | Count of matching parcels returned from the assessor roll for the requested address or parcel ID. |
| properties | string | Array of parcel records with assessed value, owner name, parcel ID, square footage, year built, and zoning. |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/property-tax-assessment \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the property-tax-assessment tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- localeproperty-taxassessor-lookupparcel-datareal-estateplutoproperty-recordstax-assessment
- methods
- POST
- cluster
- locale
- price
- $0.01 USDC per call
ADJACENT — other endpoints in locale
| endpoint | description | price |
|---|---|---|
| city-weather | Returns current weather by city name with an instant geocoded lookup. | $0.01 |
| current | Instant current weather by city name: geocodes a city or place name, then returns current Open-Meteo temperature, feels-like, humidity, w… | $0.01 |
| current-weather-city | Current weather city lookup / city-name weather conditions. | $0.01 |
| flight-status | Tracks live aircraft positions from the OpenSky Network. | $0.01 |
| property-tax | Property tax lookup. | $0.01 |
| satellite-address | Turns a street address into a cloud-free satellite image in one call. | $0.01 |
| sports-schedule | Returns upcoming games and recent results for major sports leagues: MLB, NBA, NHL, NFL, WNBA, MLS, EPL, La Liga, Bundesliga, and Serie A. | $0.01 |
| weather-current-city | Returns current weather for any city or place name, no coordinates needed. | $0.01 |
SEE ALSO