# Vealth Michelin Score

> Vealth Michelin Score is a paid API for AI agents from vealth.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns a Michelin-style restaurant score, star tier, and green star eligibility for a given restaurant name and cuisine.

## Facts

- Endpoint: POST https://vealth.net/vealth/api/x402/michelin/score
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-michelin-score-42137da3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N5w0GisDREW02liKPwZhm

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-michelin-score-42137da3 -d '<json body>'
```

Example prompt: What's the Michelin score for Le Bernardin — it's a French restaurant? I want to know the star tier and whether it qualifies for a green star.

## When to prefer this

Use this endpoint when you need a programmatic, structured Michelin-style rating for a specific restaurant by name and cuisine — especially when you need the green star sustainability flag or a numeric score alongside the star tier. Prefer this over generic review APIs when Michelin classification is the primary signal needed.

## Known failure modes

- Unknown restaurant name returns no match or generic fallback score
- Missing cuisine field may reduce scoring accuracy
- Restaurant not in Michelin-covered regions may return low or null tier
- Ambiguous restaurant names may return results for the wrong venue
- Network or payment failure returns HTTP 402 or 5xx error

## 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

A JSON object containing the restaurant's city, name, Michelin star tier (e.g. one_star, two_star, three_star), a numeric score (0-100), a human-readable tier label, and a boolean indicating green star eligibility.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string"
  },
  "cuisine": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "city": "City",
  "name": "Restaurant Name",
  "tier": "one_star",
  "score": 78,
  "tierLabel": "One Star Range (★)",
  "greenStarEligible": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-michelin-score-42137da3/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)
