# Vealth Eco-Food Bundle Scorer

> Vealth Eco-Food Bundle Scorer is a paid API for AI agents from vealth.net, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Evaluates a food-related building or venue against SDG alignment, Michelin-tier food quality, and Living Building Challenge (LBC) sustainability criteria in a single bundled API call.

## Facts

- Endpoint: POST https://vealth.net/vealth/api/x402/build-eco-food
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-eco-food-bundle-scorer-e2f165ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gyO2uD9B1XdOIoFFk4PvK

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-eco-food-bundle-scorer-e2f165ba -d '<json body>'
```

Example prompt: Score my 3,200 sq ft farm-to-table restaurant at 482 Market Street for eco-food compliance — budget is $120,000, we seat 85 people, and I want to check it against SDG11 and SDG2. Give me the Michelin tier, LBC petal score, and SDG alignment all in one go.

## When to prefer this

Choose this endpoint when you need a single-call multi-framework eco-food assessment combining SDG alignment, Michelin culinary tier, and Living Building Challenge sustainability scoring for a food-service venue. It is ideal for sustainability consultants, restaurant operators, or investors who need provable, bundled credentials across three frameworks without making separate API calls. Prefer alternatives if you need only one framework scored in isolation, or if you require real-time Michelin inspection data rather than a scored estimate.

## Known failure modes

- Invalid or unrecognizable address returns leg failure for location-dependent scoring
- Budget or sqft values of zero or negative may cause computation errors
- selectedSDGs array with unsupported SDG codes may return partial leg failures
- Network or payment settlement issues may result in partial:true with some legs failing
- Occupancy values exceeding venue capacity assumptions may skew LBC scoring

## 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 object with per-leg results for SDG alignment (including which SDGs matched and methodology version), Michelin tier (e.g. bib_gourmand) with a numeric score, and LBC tier (e.g. petal) with a numeric score. Also includes a bundle ID, timestamp, total USDC paid, whether the bundle is partial, and an all_legs_ok boolean indicating full scoring success.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "ts": "2026-04-21T20:00:00.000Z",
  "legs": [
   {
    "ok": true,
    "name": "sdg",
    "sdgs": [
     "sdg11"
    ],
    "methodology_version": "v1"
   },
   {
    "ok": true,
    "name": "michelin",
    "tier": "bib_gourmand",
    "score": 48
   },
   {
    "ok": true,
    "name": "lbc",
    "tier": "petal",
    "score": 70
   }
  ],
  "bundle": "mission-only",
  "partial": false,
  "bundle_id": "2026-04-21T20:00:00.000Z",
  "paid_usdc": 0.03,
  "all_legs_ok": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-eco-food-bundle-scorer-e2f165ba/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)
