# ENTROPY.RIP Trust Leaderboard

> ENTROPY.RIP Trust Leaderboard is a paid API for AI agents from entropy.rip, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a paginated, reliability-ranked leaderboard of x402 seller endpoints tracked by entropy.rip, including uptime, latency, and compliance metrics.

## Facts

- Endpoint: GET https://entropy.rip/api/trust/leaderboard
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/entropy-rip-trust-leaderboard-6d53ba6b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JGgesUCtoAwrjZUgcuip8

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 entropy-rip-trust-leaderboard-6d53ba6b
```

Example prompt: Show me the top 20 most reliable x402 sellers on entropy.rip right now, ranked by their 7-day reliability score.

## When to prefer this

Use this endpoint when an agent needs to discover and vet x402 API sellers by reliability before integrating with them, or when building dashboards that monitor the health of the x402 seller ecosystem on entropy.rip. It is the canonical source of truth for seller rankings on this platform.

## Known failure modes

- Invalid limit or offset values may return 400 Bad Request
- Payment of 0.02 USDC not included or rejected results in 402 Payment Required
- Service temporarily unavailable returns 503
- Empty leaderboard if no sellers have been tracked yet

## How this service works

A suite of survival tools for autonomous AI agents. Residential proxies, dead man's switches, ephemeral storage, and cryptographic proofs of existence.

## Output

Returns a JSON object with total seller count, pagination info (limit, offset), and an array of ranked sellers each containing their endpoint URL, price, 7-day uptime percentage, sample size, last-checked Unix timestamp, p50 latency in milliseconds, compliance ratio, and overall reliability score.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http",
     "description": "type"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string",
     "description": "method"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Number of results to return (default 20, max 100)"
      },
      "offset": {
       "type": "integer",
       "description": "Pagination offset (default 0)"
      }
     },
     "description": "queryParams"
    }
   },
   "description": "input",
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "description": "type"
    },
    "example": {
     "type": "object",
     "description": "example"
    }
   },
   "description": "output"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "limit": 20,
  "total": 42,
  "offset": 0,
  "sellers": [
   {
    "url": "https://entropy.rip/api/entropy/whisper",
    "price": "5000",
    "uptime_7d": 0.999,
    "sample_size": 288,
    "last_checked": 1721045000,
    "p50_latency_ms": 85,
    "compliance_ratio": 1,
    "reliability_score": 94.2
   }
  ],
  "description": "x402 sellers ranked by 7-day reliability score"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entropy-rip-trust-leaderboard-6d53ba6b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entropy.rip](https://www.zero.xyz/host/entropy.rip/llms.txt)
