# Build Scotts Bluff Tax Sale List API

> Build Scotts Bluff Tax Sale List API is a paid API for AI agents from buildscottsbluff.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Returns delinquent/tax-sale advertising list for Nebraska counties under Neb. Rev. Stat. 77-1801, including parcels, owners, balances due, taxing districts, and advertised years

## Facts

- Endpoint: GET https://buildscottsbluff.com/v1/tax-sale-list
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/build-scotts-bluff-tax-sale-list-api-108f8ffa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fon-5m7GGZfwQwlL8Gxgs

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-tax-sale-list-api-108f8ffa
```

Example prompt: Pull the current Neb. Rev. Stat. 77-1801 tax-sale advertising list for Scotts Bluff County, Nebraska — I need the delinquent parcels, owner names, balances owed, and taxing districts.

## When to prefer this

Use this endpoint when you need delinquent property tax or tax-sale advertising data for Nebraska counties, especially Scotts Bluff. Ideal for tax-lien and tax-deed investors seeking leads, or for compliance research under Neb. Rev. Stat. 77-1801. Scotts Bluff County data refreshes live; other counties are available via the ?county= parameter from a statewide snapshot.

## Known failure modes

- Invalid or unrecognized county slug returns an error or empty result
- County not found in statewide snapshot returns 404 or empty list
- Network timeout if live Scotts Bluff data feed is slow
- Missing or invalid x402 payment header results in 402 Payment Required
- Statewide snapshot data may lag real-time for non-Scotts-Bluff counties

## How this service works

One Nebraska county's Neb. Rev. Stat. 77-1801 delinquent / tax-sale advertising list: parcels, owners, balances due, districts and advertised years. Scotts Bluff (the default) refreshes live; add ?county=<slug> for any of the 72 counties in the statewide snapshot. The lead source for tax-lien and tax-deed investors. GET /v1/tax-sale-list.

## Output

A list of delinquent/tax-sale parcels for the requested Nebraska county, each including parcel identifier, owner name, amount due, taxing district(s), and the year(s) the parcel was advertised under the Nebraska tax-sale statute.

## 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-tax-sale-list-api-108f8ffa/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)
