# CriptoNous Delfos — Crypto Market Intelligence (Pay-Per-Query)

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

Returns whale flow, smart money signals, sentiment, and oracle data for a given crypto token symbol via a pay-per-query Solana USDC micropayment.

## Facts

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

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-delfos-crypto-market-intelligence-pay-per-query-525bb0fb
```

Example prompt: Pull me the latest whale flow and smart money signals for SOL from CriptoNous Delfos — I want to see if big wallets are accumulating or dumping right now.

## When to prefer this

Choose this endpoint when you need real-time on-chain crypto intelligence — specifically whale wallet flow, smart money positioning, sentiment aggregation, or oracle signals — for a specific token, and you want pay-per-query access without a subscription. Prefer this over generic price feeds or CEX APIs when on-chain behavioral signals (not just price) are needed. Best suited for AI agents making autonomous trading-adjacent research decisions on a per-query cost model via x402/Solana USDC micropayments.

## Known failure modes

- Payment failure: insufficient USDC balance on Solana causes 402 Payment Required response
- Invalid symbol: unsupported or misspelled token symbol may return empty or error payload
- Network latency: Solana network congestion could slow payment confirmation
- Rate limiting: repeated rapid queries may be throttled
- Missing required fields: omitting the 'type' or 'method' input fields causes request rejection

## 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 including the SKU identifier, a pass ID, receipt ID, an NFA disclaimer flag, and the intelligence payload covering whale flow, smart money movements, sentiment, and oracle signals for the requested 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": "delfos.reading",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

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