# Pocket Network Shannon Validator Rankings API

> Pocket Network Shannon Validator Rankings API is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns ranked list of top Pocket Network Shannon validators by bonded tokens, including jailed status, moniker, commission rate, and network totals

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/pokt/validators
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pocket-network-shannon-validator-rankings-api-c1f8bba2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0DbyQV0zVvdNfmrTifyDJ

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 pocket-network-shannon-validator-rankings-api-c1f8bba2
```

Example prompt: Show me the top 15 Pocket Network Shannon validators ranked by bonded POKT, including whether any are jailed and what commission they charge.

## When to prefer this

Choose this endpoint when you need live, on-chain Pocket Network Shannon validator data ranked by stake, especially with commission and jailed-status details in a single call. Prefer it over generic blockchain explorers when you need structured JSON output ready for agent consumption, and when you need x402/USDC micropayment settlement per call rather than API key subscriptions.

## Known failure modes

- Payment not included or invalid USDC x402 header — returns 402 Payment Required
- Limit parameter outside 1-25 range — may return validation error or default to 10
- Pocket Network RPC node temporarily unavailable — returns 503 or timeout
- Invalid query parameter type (non-numeric limit) — returns 400 Bad Request
- Network congestion on Shannon mainnet causing stale or delayed validator data

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

A JSON object containing the network name ('pocket-shannon'), the ranking field used ('bondedTokens'), an array of top validators each with moniker, jailed status, bonded POKT amount, and commission rate percentage, plus aggregate stats: total bonded POKT across all validators and the count of actively bonded validators.

## 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"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string",
       "description": "Number of top validators to return, 1-25 (default 10)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "network": "pocket-shannon",
  "rankedBy": "bondedTokens",
  "validators": [
   {
    "jailed": false,
    "moniker": "Validatus",
    "bondedTokensPokt": 5552223.72,
    "commissionRatePct": 5
   }
  ],
  "totalBondedPokt": 8706223.72,
  "bondedValidatorCount": 21
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pocket-network-shannon-validator-rankings-api-c1f8bba2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
