# CriptoNous x402 — 24h Session Crypto Market Intelligence

> CriptoNous x402 — 24h Session Crypto Market Intelligence is a paid API for AI agents from app.criptonous.com, paid per call via x402, $9/call, status unknown (last checked 2026-09-15).

Returns a 24-hour session pass granting access to crypto market intelligence including whale flow, smart money signals, sentiment, and oracle data for a given token, paid per-query via Solana USDC.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/session.24h
- Price: $9/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-24h-session-crypto-market-intelligence-ebaa2863
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p8_MWHR5RGu3-ymfs5FUv

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-24h-session-crypto-market-intelligence-ebaa2863
```

Example prompt: Pull up a 24-hour market intelligence session for SOL — I want to see whale flow, smart money signals, and sentiment right now.

## When to prefer this

Choose this endpoint when you need on-chain crypto market intelligence — specifically whale wallet flow, smart money positioning, sentiment aggregation, and oracle price signals — for a specific token on a pay-per-query basis without a subscription commitment. Prefer this over general crypto data APIs (CoinGecko, CoinMarketCap) when you need behavioral/on-chain signals rather than just price/volume data, and when you want Solana-native micropayment settlement.

## Known failure modes

- Payment not completed or insufficient USDC balance — returns unpaid or 402 status
- Invalid or unsupported token symbol — may return empty or error response
- Session already active — duplicate session purchase may not be refunded
- Network or Solana RPC issues causing payment verification failure
- Malformed request method — only GET/HEAD/DELETE accepted

## 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 successful payment and session creation, including a pass ID (passId), receipt ID (receiptId), the SKU (session.24h), payment status, and an NFA disclaimer flag. The actual intelligence data (whale flow, smart money, sentiment, oracle signals) is unlocked via the issued session pass.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-x402-24h-session-crypto-market-intelligence-ebaa2863/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)
