# Vealth Standards Classifier

> Vealth Standards Classifier is a paid API for AI agents from vealth.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Maps a plain-language work description to the registered standards it satisfies, from the Vealth standards registry, settled via CDP/x402.

## Facts

- Endpoint: POST https://vealth.net/.well-known/vealth/cdp/standards-classifier
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vealth-standards-classifier-a94cb370
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXjtHMLZoVNfbgqQlbhQr

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-standards-classifier-a94cb370 -d '<json body>'
```

Example prompt: Can you classify this work description against the Vealth standards registry and tell me which registered standards it satisfies: 'Planted and maintained native seedlings along a degraded riparian corridor, recording GPS coordinates and survival rates for each planting site'?

## When to prefer this

Use this endpoint when you need to programmatically classify a free-text work or job description against a curated standards registry and receive a structured standards mapping. Prefer this over generic NLP classifiers when the target classification taxonomy is the Vealth standards registry specifically, and when payment is handled via x402/CDP micropayment flow.

## Known failure modes

- Description too vague to match any standard — returns no matches or low-confidence result
- Description matches multiple ambiguous standards — returns multiple candidates without clear winner
- Standards registry does not contain a relevant standard — returns empty or null match
- Payment failure via x402/CDP — 402 response before classification occurs
- Malformed or missing description field — 400 validation error
- Network or upstream registry unavailability — 5xx error

## How this service works

Standards Classifier (CDP-settled mirror) — map a plain-language work description to the registered standard(s) it satisfies, from our standards registry.

## Output

A mapping of the input work description to one or more registered standards from the Vealth standards registry, identifying which standards the described work satisfies, likely including standard names, identifiers, and confidence or match metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "description": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vealth-standards-classifier-a94cb370/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)
