# CriptoNous Delfos Reading — Crypto Market Intelligence

> CriptoNous Delfos Reading — Crypto Market Intelligence is a paid API for AI agents from cripto-app-v1-production.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns pay-per-query crypto market intelligence (whale flow, smart money, sentiment, oracle signals) for a given token symbol

## Facts

- Endpoint: GET https://cripto-app-v1-production.up.railway.app/x402/resource/delfos.reading
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-delfos-reading-crypto-market-intelligence-bd54d938
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E8i1iIHKv1m1Qs57ohCkT

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-reading-crypto-market-intelligence-bd54d938
```

Example prompt: Pull a Delfos market intelligence reading 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-demand, pay-per-query crypto market intelligence specifically covering whale flows, smart money positioning, sentiment, and oracle signals for Solana-ecosystem and major tokens. It is ideal for agents that need lightweight, cost-controlled market reads without a subscription, and when the x402 micropayment protocol (Solana USDC) is already integrated. Prefer this over free aggregators when signal quality (whale/smart-money specificity) matters more than cost.

## Known failure modes

- Payment not completed or insufficient USDC balance — request rejected with 402 Payment Required
- Invalid or unsupported token symbol — may return empty or error response
- Missing required 'type' or 'method' fields in input — validation error
- Service unavailable on Railway deployment — 503 or timeout
- Rate limiting if too many concurrent requests are made

## 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 object confirming the paid query was processed (ok, paid, nfa flags), along with a SKU identifier ('delfos.reading'), a pass ID, and a receipt ID. The actual market intelligence payload (whale flow, smart money, sentiment, oracle signals) is included in the response body 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": "delfos.reading",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-delfos-reading-crypto-market-intelligence-bd54d938/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cripto-app-v1-production.up.railway.app](https://www.zero.xyz/host/cripto-app-v1-production.up.railway.app/llms.txt)
