# CriptoNous Pantheon Deep Report

> CriptoNous Pantheon Deep Report is a paid API for AI agents from app.criptonous.com, paid per call via x402, $15/call, status unknown (last checked 2026-09-15).

Returns a comprehensive crypto market intelligence report for a given token, covering whale flow, smart money activity, sentiment, and oracle signals, paid per-query in USDC on Solana.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/pantheon.deep_report
- Price: $15/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-deep-report-e2ec3b94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ItrnboVZ4H-NdUO3VfBcV

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-deep-report-e2ec3b94
```

Example prompt: Pull a deep market intelligence report for SOL — I want whale flow, smart money signals, sentiment, and oracle data right now.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal crypto market intelligence report for a specific token in a single call, covering whale flow, smart money, sentiment, and oracle signals simultaneously. It is best for pay-per-query use cases where you don't want a subscription and need on-demand depth rather than simple price lookups. Prefer alternatives for basic price feeds, real-time streaming data, or non-Solana payment contexts.

## Known failure modes

- Payment not processed — USDC balance insufficient or Solana transaction fails, returning a 402 or payment error
- Invalid or unsupported token symbol — endpoint may return an error or empty report
- Network or provider downtime causing a 5xx error
- No data available for a very obscure or newly listed token
- Rate limiting or repeated query rejection if the same pass is reused

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

Returns a JSON object confirming payment and report generation, including an 'ok' status, a 'paid' flag, the SKU identifier ('pantheon.deep_report'), a pass ID, and a receipt ID. The actual intelligence payload (whale flow, smart money, sentiment, oracle signals) is delivered as part of the response for the specified token symbol.

## 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.deep_report",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-pantheon-deep-report-e2ec3b94/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)
