# locus.report Workplace Employment Context

> locus.report Workplace Employment Context is a paid API for AI agents from locus.report, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns Census LODES workplace job counts and broad industry sector breakdowns within a radius around a given US location

## Facts

- Endpoint: POST https://locus.report/api/locus-workplace-employment-context
- 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/locus-report-workplace-employment-context-06004af1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_09hBwo_NO7EeGuknIdLHz

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 locus-report-workplace-employment-context-06004af1 -d '<json body>'
```

Example prompt: What are the workplace job counts and industry sector breakdown within 500 meters of 123 Main St, Austin, TX — I need daytime employment context for a commercial site selection decision?

## When to prefer this

Use this endpoint when you need authoritative, government-sourced daytime employment counts at block level near a specific US location for commercial site selection, tenant diligence, or labor market context. Prefer it over foot traffic or visit data when you need actual job counts by industry rather than consumer activity estimates. It is not suitable for foot traffic, retail demand forecasting, consumer demographics, or non-workplace residential population counts.

## Known failure modes

- No workplace census blocks found within the specified radius — returns empty or charge-free result
- State LODES snapshot missing or stale — endpoint returns no data and does not charge
- Invalid or unresolvable address — geocoding failure
- Radius outside allowed bounds (250–5000 meters) — validation error
- Invalid industry sector code outside CNS01–CNS20 — validation error
- Coordinates outside continental US coverage — no data returned

## How this service works

Census LODES workplace jobs and broad industry sectors within a radius. Perfect for: commercial site selection, tenant diligence, daytime employment, and labor context near a selected site. Returns annual block-level aggregates only; excludes worker demographics. Jobs are not shoppers, visits, foot traffic, sales, demand, or a forecast. Charge-free when the state snapshot is missing, stale, unavailable, or no workplace block falls in the radius.

## Output

Annual block-level aggregate job counts for all workplace blocks falling within the specified radius, broken down by Census LODES industry sector codes (CNS01–CNS20). Excludes worker demographics and home-to-work flows. Returns no charge and no data if the state snapshot is missing, stale, or unavailable, or if no workplace blocks exist in the radius.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  },
  "latitude": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "longitude": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  },
  "radiusMeters": {
   "type": "integer",
   "maximum": 5000,
   "minimum": 250
  },
  "industrySectors": {
   "type": "array",
   "items": {
    "enum": [
     "CNS01",
     "CNS02",
     "CNS03",
     "CNS04",
     "CNS05",
     "CNS06",
     "CNS07",
     "CNS08",
     "CNS09",
     "CNS10",
     "CNS11",
     "CNS12",
     "CNS13",
     "CNS14",
     "CNS15",
     "CNS16",
     "CNS17",
     "CNS18",
     "CNS19",
     "CNS20"
    ],
    "type": "string"
   },
   "maxItems": 20
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/locus-report-workplace-employment-context-06004af1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from locus.report](https://www.zero.xyz/host/locus.report/llms.txt)
