# Pocket Network Shannon Service Demand API

> Pocket Network Shannon Service Demand 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-13).

Returns ranked Pocket Network Shannon relay-demand data including EMA relay volume, active suppliers, and trend for top blockchain services

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/pokt/service-demand
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pocket-network-shannon-service-demand-api-960cfdd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s86MBwOxF3DvcVACDYzNT

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-service-demand-api-960cfdd0
```

Example prompt: Show me the top 15 Pocket Network Shannon services ranked by relay volume EMA right now — I want to see which chains are trending up or down and how many active suppliers each has.

## When to prefer this

Choose this endpoint when you need live, ranked relay-demand intelligence specifically from the Pocket Network Shannon protocol — including EMA trends, supplier counts, and percent changes per chain. Prefer this over generic blockchain explorers when your question is about decentralized RPC demand, gateway traffic patterns, or Pocket Network tokenomics. Not suitable for raw on-chain state queries, token prices, or non-Pocket-Network RPC data.

## Known failure modes

- Invalid limit parameter (outside 1-25 range) returns a 400 error
- Payment failure or expired x402 token returns a 402 Payment Required
- Service temporarily unavailable if Pocket Network Shannon data source is unreachable
- Rate limiting if payment is not settled per-call correctly
- Stale data if upstream Pocket Network relay indexing is delayed

## 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 method ('relayVolumeEma'), and an array of service objects each with: service name, service ID, relay volume EMA, previous relay volume EMA, percent change, trend direction ('rising'/'falling'), and active supplier count — ordered by relay volume EMA descending.

## 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 services 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": "relayVolumeEma",
  "services": [
   {
    "name": "Ethereum",
    "trend": "rising",
    "pctChange": 4.62,
    "serviceId": "eth",
    "relayVolumeEma": 12345,
    "activeSuppliers": 812,
    "prevRelayVolumeEma": 11800
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pocket-network-shannon-service-demand-api-960cfdd0/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)
