# Pocket Network Shannon Top Applications Lookup

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

Returns ranked list of top staked applications on Pocket Network's Shannon mainnet, including stake amounts, subscribed services, and aggregate network totals.

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/pokt/applications
- 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/pocket-network-shannon-top-applications-lookup-e2588102
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8TtJG2zI-UZAWBXdbEneB

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-top-applications-lookup-e2588102
```

Example prompt: Show me the top 15 applications staked on Pocket Network's Shannon mainnet, ranked by stake amount — I want to see each application's ID, how much POKT they've staked, and how many services they're subscribed to.

## When to prefer this

Use this endpoint when you need live, on-chain Pocket Network Shannon application stake rankings and aggregate tokenomics — particularly when you want the top-N staked gateways by POKT amount and their subscribed service counts. Prefer this over generic blockchain explorers when you specifically need Pocket Network relay-layer application data rather than token transfer or validator data.

## Known failure modes

- Invalid limit parameter (outside 1–25 range) may return an error or default behavior
- Payment failure or missing x402 USDC payment header returns 402 Payment Required
- Network or RPC connectivity issues to Pocket Network Shannon may return 503 or timeout
- Endpoint may return stale data if the underlying Pocket Network node is syncing

## 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

Returns a JSON object containing the network name ('pocket-shannon'), the ranking criterion ('stakeAmount'), an array of top applications each with applicationId, stakedPokt, and servicesSubscribed count, the total POKT staked across all applications, and the count of active applications. Respects an optional limit parameter (1–25, default 10).

## 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 applications 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": "stakeAmount",
  "topApplications": [
   {
    "stakedPokt": 29580.35,
    "applicationId": "pokt1hufj...",
    "servicesSubscribed": 1
   }
  ],
  "totalStakedPokt": 830714.22,
  "activeApplications": 125
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pocket-network-shannon-top-applications-lookup-e2588102/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)
