# Build Scotts Bluff Taxing Bodies API

> Build Scotts Bluff Taxing Bodies API is a paid API for AI agents from buildscottsbluff.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns every taxing body levying in Scotts Bluff County with annual tax amounts, recipient mappings, property-tax generation by use type, and county-wide totals by year.

## Facts

- Endpoint: GET https://buildscottsbluff.com/v1/taxing-bodies
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/build-scotts-bluff-taxing-bodies-api-9e48f271
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uwu1xYI92W0hzeFWht1IC

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-taxing-bodies-api-9e48f271
```

Example prompt: Show me every taxing body levying property taxes in Scotts Bluff County — I need their annual collections, the recipients they map to, and the county-wide tax totals broken out by property use type.

## When to prefer this

Choose this endpoint when you need authoritative, structured data on who levies and receives property taxes in Scotts Bluff County, Nebraska — particularly for parcel-level tax distribution questions, local government revenue analysis, or cross-year trend comparisons. It is the right choice over generic tax databases when county-specific Nebraska data with recipient mapping is required.

## Known failure modes

- Data may be stale if county assessor records have not been refreshed
- No query parameters supported beyond the basic GET, so filtering must be done client-side
- Returns an empty or minimal dataset if county has not yet filed annual levy data
- Network or payment authentication failure returns a 402 or 4xx error

## How this service works

Every taxing body levying in Scotts Bluff County with its annual take, the recipients it maps to, county property-tax generation by use type, and the county-wide tax total by year. Answers "who receives this parcel's tax and how much". GET /v1/taxing-bodies.

## Output

A structured list of every taxing body levying property taxes in Scotts Bluff County, including each body's annual levy amount, the recipient entities it maps to, property-tax revenue broken down by land use/property type, and county-wide tax totals organized by year.

## 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-taxing-bodies-api-9e48f271/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)
