Complete parcel intelligence: owner, situs, assessed value, classification, property tax a
Complete parcel intelligence: owner, situs, assessed value, classification, property tax and tax-sale (delinquency) status, full sale history and deeds, census tract, CDBG low/mod status, and every qualifying funding program with its cited rule.
10000 (raw units)
price
6
calls / 30d
3
unique payers
2026-09-11
updated
Provider
buildscottsbluff.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x53a05c0Eed6cBf065F31aEDbAE7B0D8Ce1A0f4DB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"item": "parcel-full"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"item": {
"description": "Which slice to buy: the full record (default), core facts only, or the cited programs.",
"enum": [
"parcel-full",
"parcel-snapshot",
"eligibility"
],
"type": "string"
}
},
"type": "object"
},
"type": "http"
},
"output": {
"example": {
"cdbg": {
"areaBenefitEligible": true,
"lowModPercent": 54.3,
"tract": "31157964600"
},
"corpusVersion": "2026-07",
"disclaimer": "Public records assembled for information; verify with the county before relying on it.",
"opportunities": [
{
"amount": "varies",
"citation": "Neb. Rev. Stat. 18-2701 et seq.",
"id": "ne-lb840",
"title": "LB840 Local Economic Development Program"
}
],
"parcel": {
"annualTax": 2184.62,
"assessedValue": 128500,
"improvementValue": 110500,
"landValue": 18000,
"owner": "DOE JOHN A",
"propertyClass": "RESIDENTIAL",
"situs": "1234 AVE B, SCOTTSBLUFF",
"taxSaleStatus": "none"
},
"parcelId": "010000896"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"cdbg": {
"description": "HUD low/mod (CDBG area-benefit) status.",
"type": [
"object",
"null"
]
},
"corpusVersion": {
"type": "string"
},
"disclaimer": {
"type": "string"
},
"opportunities": {
"description": "Qualifying programs with cited rules.",
"items": {
"type": "object"
},
"type": "array"
},
"parcel": {
"description": "Public parcel record (owner, situs, value, class, tax, sales).",
"type": "object"
},
"parcelId": {
"type": "string"
}
},
"required": [
"parcelId"
],
"type": "object"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"schema": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"schema": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://buildscottsbluff.com/v1/parcel/010070362" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://buildscottsbluff.com/v1/parcel/010070362");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://buildscottsbluff.com/v1/parcel/010070362")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3360.json, and this resource appears in /discovery/resources and /discovery/search.