# Build Scotts Bluff Workforce Indicators API

> Build Scotts Bluff Workforce Indicators 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-14).

Returns Census LEHD Quarterly Workforce Indicators for Scotts Bluff County from 2010, including employment counts, hires, separations, job gains/losses, earnings, turnover, and industry breakdown.

## Facts

- Endpoint: GET https://buildscottsbluff.com/v1/workforce
- Price: $0.01/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-workforce-indicators-api-94147502
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vMxHTNhluYnkuxzU91uSR

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-workforce-indicators-api-94147502
```

Example prompt: Pull me the Census LEHD quarterly workforce data for Scotts Bluff County — I want to see employment counts, hires, separations, job gains and losses, and the industry breakdown across all quarters since 2010.

## When to prefer this

Choose this endpoint when you specifically need Scotts Bluff County, Nebraska labor market data derived from Census LEHD, especially when you need historical quarterly granularity back to 2010, industry-level breakdowns, or job flow metrics (gains, losses, hires, separations) that go beyond simple unemployment rates. Prefer this over ACS demographic endpoints when your question is about workforce dynamics rather than population characteristics.

## Known failure modes

- Data unavailable for a specific quarter if LEHD has not yet released it — endpoint may return partial or empty results for the most recent periods
- Invalid or missing HTTP method causes a 400-level error
- Payment not processed (x402 protocol failure) results in 402 response and no data returned
- Network timeout if the underlying LEHD data source is temporarily unavailable

## How this service works

Census LEHD Quarterly Workforce Indicators for Scotts Bluff County, every quarter from 2010: employment, beginning/end-of-quarter counts, hires, separations, job gains and losses, average beginning earnings and turnover, plus the industry breakdown. GET /v1/workforce.

## Output

A structured dataset of Census LEHD Quarterly Workforce Indicators for Scotts Bluff County spanning every quarter from 2010, including: total employment, beginning- and end-of-quarter employment counts, new hires, separations, job gains, job losses, average beginning-of-quarter earnings, turnover rates, and an industry-level breakdown of these metrics.

## 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-workforce-indicators-api-94147502/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)
