# Vealth LBC (Living Building Challenge) Property Scanner

> Vealth LBC (Living Building Challenge) Property Scanner is a paid API for AI agents from vealth.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Scores a property address against seven Living Building Challenge petal categories (water, beauty, energy, equity, health, culture, materials) given its square footage, budget, and occupancy.

## Facts

- Endpoint: POST https://vealth.net/vealth/api/x402/lbc/scan
- 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/vealth-lbc-living-building-challenge-property-scanner-954701da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2S56Gzp2CiJQMzM1HAmad

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 vealth-lbc-living-building-challenge-property-scanner-954701da -d '<json body>'
```

Example prompt: Can you run an LBC petal scan on 123 Main St, Portland OR — the building is 2400 sqft, has an occupancy of 8 people, and we have a $50000 renovation budget?

## When to prefer this

Choose this endpoint when you need a structured, multi-dimensional sustainability scorecard for a specific property using the Living Building Challenge petal framework, especially when you have concrete building parameters (sqft, occupancy, budget) and want quantified scores across all seven LBC categories. Prefer this over generic green-building APIs when you specifically need LBC petal methodology.

## Known failure modes

- Missing or unrecognizable address returns an error or low-confidence scorecard
- Non-numeric sqft or budget values cause schema validation failure
- Occupancy of zero or negative number may produce unexpected scoring behavior
- Address outside supported geographic coverage may return null or default petal values
- Payment failure via x402 prevents the scan from being executed

## How this service works

Find useful work. Build a life from it. Every job shows the place, the task, the proof, and the pay before you begin. Start today and grow toward mastery.

## Output

Returns a JSON scorecard with a numeric score (0–100 scale) for each of the seven Living Building Challenge petals — water, beauty, energy, equity, health, culture, and materials — keyed to the submitted address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sqft": {
   "type": "number"
  },
  "budget": {
   "type": "number"
  },
  "address": {
   "type": "string"
  },
  "occupancy": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "scorecard": {
   "petals": {
    "water": 72,
    "beauty": 74,
    "energy": 85,
    "equity": 71,
    "health": 79,
    "culture": 81,
    "materials": 68
   },
   "address": "123 Main St"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-lbc-living-building-challenge-property-scanner-954701da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vealth.net](https://www.zero.xyz/host/vealth.net/llms.txt)
