# Trust402 Badge Payload Generator

> Trust402 Badge Payload Generator is a paid API for AI agents from trust402.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Generates a one-shot Trust402 trust badge payload from a snapshot of an x402 endpoint or origin.

## Facts

- Endpoint: POST https://trust402.vercel.app/api/monitor/badge
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trust402-badge-payload-generator-d9954072
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3qbDe1wOCPFJSfW-x6jra

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 trust402-badge-payload-generator-d9954072 -d '<json body>'
```

Example prompt: Generate a Trust402 badge payload for my x402 endpoint at https://myapi.example.com/resource using a GET request from origin https://myapi.example.com — I want a trust snapshot badge I can display to marketplace buyers.

## When to prefer this

Use this endpoint when you need a displayable, one-shot trust badge payload for a specific x402 endpoint — particularly for marketplace listings, storefront trust displays, or pre-launch certification checks. Prefer this over the full diligence report endpoint when you need a lightweight badge artifact rather than a comprehensive evidence-backed report, and over the live probe endpoint when your goal is badge generation rather than raw readiness diagnostics.

## Known failure modes

- Invalid or unreachable endpoint URI returns an error or empty snapshot
- Malformed origin/endpoint URI format causes a 400-level validation error
- Endpoint does not respond with a valid x402 challenge, resulting in a low-trust or failed badge
- Network timeout if the target endpoint is slow to respond
- Missing required fields in request body may cause a schema validation error

## How this service works

Generate a one-shot Trust402 badge payload from a snapshot.

## Output

Returns a Trust402 badge payload object derived from a live snapshot of the specified x402 endpoint, including trust assessment data suitable for display to marketplace buyers or embedding in seller storefronts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "method": {
   "enum": [
    "GET",
    "POST",
    "PUT",
    "PATCH",
    "DELETE",
    "HEAD"
   ],
   "type": "string",
   "default": "GET"
  },
  "origin": {
   "type": "string",
   "format": "uri"
  },
  "endpoint": {
   "type": "string",
   "format": "uri"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trust402-badge-payload-generator-d9954072/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trust402.vercel.app](https://www.zero.xyz/host/trust402.vercel.app/llms.txt)
