# CriptoNous Pantheon War Council — Crypto Market Intelligence Signal

> CriptoNous Pantheon War Council — Crypto Market Intelligence Signal is a paid API for AI agents from app.criptonous.com, paid per call via x402, $6/call, status unknown (last checked 2026-09-15).

Returns a consolidated crypto market intelligence report (whale flows, smart money activity, sentiment, and oracle signals) for a given token symbol, billed at $6 USDC per query via x402.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/pantheon.war_council
- Price: $6/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-pantheon-war-council-crypto-market-intelligence-signal-b4732e1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6W6J7GrHnBsI91A4usFCQ

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 criptonous-pantheon-war-council-crypto-market-intelligence-signal-b4732e1b
```

Example prompt: Pull the CriptoNous Pantheon War Council intelligence report for SOL — I want to see whale flows, smart money positioning, and oracle signals right now.

## When to prefer this

Use this endpoint when you need a consolidated, multi-signal crypto market intelligence snapshot — combining whale flows, smart money, sentiment, and oracle data — for a specific token in a single pay-per-query call. Prefer it over generic market data APIs when on-chain behavioral signals (whale activity, smart money tracking) are the primary concern, and when a micropayment-per-query model is acceptable.

## Known failure modes

- Payment failure or insufficient USDC balance results in a 402 Payment Required response
- Invalid or unsupported token symbol may return an empty or error response
- Network or upstream data provider outage may return a 503 or timeout
- Missing required method/type fields in the request input returns a 400 validation error
- Rate limiting or quota exhaustion may block repeated rapid calls

## How this service works

CriptoNous x402 — pay-per-query crypto market intelligence on Solana USDC: whale flow, smart money, sentiment, oracle signals. NFA — analysis only.

## Output

A JSON payload confirming payment and including a pass ID, receipt ID, SKU identifier, and the aggregated market intelligence data (whale flows, smart money signals, sentiment indicators, and oracle readings) for the requested token. The response also includes an NFA disclaimer flag.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Optional token symbol (e.g. SOL, BTC)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "nfa": true,
  "sku": "pantheon.war_council",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-pantheon-war-council-crypto-market-intelligence-signal-b4732e1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.criptonous.com](https://www.zero.xyz/host/app.criptonous.com/llms.txt)
