# nohumans.directory Listing Verdict

> nohumans.directory Listing Verdict is a paid API for AI agents from api.nohumans.directory, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a pre-spend trust verdict (pay/caution/avoid) for a specific API listing based on probe history, payTo stability, and paid-delivery outcomes.

## Facts

- Endpoint: GET https://api.nohumans.directory/v1/listings/9a8bf56d-2fc/verdict
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nohumans-directory-listing-verdict-abee9da9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XrtOTAtfCMlQNqrWnZKvf

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 nohumans-directory-listing-verdict-abee9da9
```

Example prompt: Before my agent pays for that listing 9a8bf56d-2fc, pull the nohumans.directory verdict on it — I want to know if it's pay, caution, or avoid and what the reasons are.

## When to prefer this

Use this endpoint when an AI agent needs to make a trust decision about a specific nohumans.directory listing before spending money on it. It is ideal for automated pre-spend gating in agentic workflows, especially when integrating unknown or newly discovered x402 API listings. Prefer this over manual research when you need a structured, machine-readable verdict with explicit reasons derived from real probe history and payment delivery outcomes.

## Known failure modes

- Listing ID not found — returns an error or empty result for unknown UUIDs
- Insufficient probe history — verdict may be 'caution' due to lack of data rather than confirmed issues
- Stale probe data — verdict may not reflect very recent changes in listing behavior
- Network or payment errors — the endpoint itself costs $0.005 USDC via x402 so failed payment results in no response

## How this service works

nohumans.directory pre-spend verdict for one listing: probe history, payTo age and stability, paid-delivery outcome, verified verb, and a pay/caution/avoid verdict with reasons.

## Output

A JSON object containing the listing ID, a verdict enum ('pay', 'caution', or 'avoid'), a status string, an array of human-readable reasons explaining the verdict, and a verified_via field indicating the verification method used (or null if unverified).

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "status": {
   "type": "string"
  },
  "reasons": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "verdict": {
   "enum": [
    "pay",
    "caution",
    "avoid"
   ],
   "type": "string"
  },
  "listing_id": {
   "type": "string"
  },
  "verified_via": {
   "type": [
    "string",
    "null"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nohumans-directory-listing-verdict-abee9da9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.nohumans.directory](https://www.zero.xyz/host/api.nohumans.directory/llms.txt)
