# CriptoNous x402 Oracle Seal — Crypto Market Intelligence (Pay-per-Query)

> CriptoNous x402 Oracle Seal — Crypto Market Intelligence (Pay-per-Query) is a paid API for AI agents from app.criptonous.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-15).

Returns on-chain oracle signals, whale flow, smart money activity, and market sentiment for a given crypto token, billed per query via x402 Solana USDC micropayment.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/oracle.seal
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-x402-oracle-seal-crypto-market-intelligence-pay-per-query-0a5c90fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LqwOUb089ebiGOpDSttHX

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-x402-oracle-seal-crypto-market-intelligence-pay-per-query-0a5c90fb
```

Example prompt: Pull the CriptoNous oracle signal for SOL right now — I want to see whale flow, smart money activity, and current sentiment for Solana.

## When to prefer this

Choose this endpoint when you need real-time, on-chain-derived crypto market signals including whale flow, smart money tracking, and oracle-grade sentiment for a specific token, and are comfortable with a $0.35 USDC micropayment per query via the x402 protocol. Prefer this over free aggregators when signal quality and on-chain provenance matter. Not suitable for high-frequency automated polling due to per-query cost.

## Known failure modes

- Payment failure — insufficient USDC balance or x402 payment not processed, returns 402 Payment Required
- Missing or invalid token symbol — query proceeds but may return generic or empty signal data
- Rate limiting or quota exhaustion — too many queries in a short window
- Service unavailability — upstream oracle data source offline, returns 5xx error
- Malformed request — unsupported HTTP method or missing required input fields returns 400

## 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 with ok status, NFA disclaimer flag, the SKU identifier (oracle.seal), payment confirmation (paid), a pass ID, and a receipt ID. The actual market intelligence payload (whale flow, smart money, sentiment, oracle signals) is embedded in the response for the queried 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": "oracle.seal",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-x402-oracle-seal-crypto-market-intelligence-pay-per-query-0a5c90fb/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)
