# Build Scotts Bluff Parcel Intelligence API

> Build Scotts Bluff Parcel Intelligence API is a paid API for AI agents from buildscottsbluff.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns complete parcel intelligence for a Scotts Bluff County, Nebraska property by parcel ID, including owner, assessed value, tax status, sale history, census tract, and qualifying funding programs.

## Facts

- Endpoint: GET https://buildscottsbluff.com/v1/parcel/010070362
- 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/build-scotts-bluff-parcel-intelligence-api-bfe93a7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IVDpSJ6Z7pVIJA_SEX6Xu

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 build-scotts-bluff-parcel-intelligence-api-bfe93a7c
```

Example prompt: Pull up everything you can on parcel 010070362 in Scotts Bluff County — owner, assessed value, tax and delinquency status, full sale history, census tract, and any funding programs it qualifies for with the rules cited.

## When to prefer this

Use this endpoint when you need a single comprehensive pull of all property intelligence for a Scotts Bluff County, Nebraska parcel — especially when you need tax/delinquency status, CDBG eligibility, funding program qualification, or deed history alongside basic ownership and valuation data. Prefer this over generic county record lookups when you need funding program citations tied to the parcel.

## Known failure modes

- Parcel ID not found in Scotts Bluff County — returns 404 or empty result
- Parcel ID format is invalid — returns validation error
- Payment not included or insufficient — returns 402 Payment Required
- Property exists but has no funding program matches — returns empty programs array
- Stale or incomplete county data may cause missing fields for some parcels

## How this service works

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.

## Output

A comprehensive property intelligence record including: owner name and contact info, situs address, assessed value, property classification, current property tax and tax-sale/delinquency status, complete sale history and associated deed records, census tract designation, CDBG low/mod income area status, and a list of every qualifying funding program with its cited statutory or regulatory rule.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "schema": {
     "type": "object"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "schema": {
     "type": "object"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/build-scotts-bluff-parcel-intelligence-api-bfe93a7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from buildscottsbluff.com](https://www.zero.xyz/host/buildscottsbluff.com/llms.txt)
