# Build Scotts Bluff Census Demographics API

> Build Scotts Bluff Census Demographics 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-16).

Returns American Community Survey 5-year demographic and housing statistics for Scotts Bluff County and its ten places, including a 16-year trend series.

## Facts

- Endpoint: GET https://buildscottsbluff.com/v1/census
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/build-scotts-bluff-census-demographics-api-26a14503
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i46hI2ZOBxQXlR6NxXU0T

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-census-demographics-api-26a14503
```

Example prompt: Pull the latest ACS 5-year demographics for Scotts Bluff County — I want to see population, median household income, poverty rate, median home value, and the 16-year trend for each of those across the county and its ten places.

## When to prefer this

Choose this endpoint when you need official Census Bureau ACS demographic and housing statistics specifically for Scotts Bluff County, Nebraska or any of its ten constituent places, especially when longitudinal trend data (16 years) is needed. It is superior to general Census API calls because it pre-aggregates place-level data with trend series in a single call at low cost.

## Known failure modes

- No query parameters needed but malformed requests may return 400 errors
- Data may lag current year by 1-2 years due to ACS release schedules
- Places with very small populations may have suppressed or high-margin-of-error estimates
- Payment failure (x402) if USDC not provided or insufficient balance

## How this service works

American Community Survey 5-year demographics for Scotts Bluff County and each of its ten places, plus a 16-year trend series: population, median household and per-capita income, poverty, median home value, gross rent, housing units and owner/renter occupancy. GET /v1/census.

## Output

A JSON response containing ACS 5-year demographic estimates for Scotts Bluff County and each of its ten incorporated places, covering population, median household income, per-capita income, poverty rate, median home value, gross rent, total housing units, and owner/renter occupancy rates, along with a 16-year time series for trend analysis.

## 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-census-demographics-api-26a14503/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)
