# CriptoNous x402 Oracle Seal — Crypto Market Intelligence

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

Returns oracle-grade crypto market intelligence signals (whale flow, smart money, sentiment) for a given token symbol, paid per-query via x402/USDC.

## Facts

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

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-121dcd08
```

Example prompt: Pull the oracle seal intelligence 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 oracle-grade, on-chain crypto market intelligence (whale flow, smart money movement, sentiment) for a specific token on a pay-per-query basis via x402/Solana USDC. Prefer it over free or aggregated APIs when freshness, oracle-level signal quality, and per-query cost control matter. Best suited for agent workflows that only occasionally need crypto intelligence and want to avoid subscription overhead.

## Known failure modes

- Payment not completed or USDC balance insufficient — returns 402 Payment Required
- Invalid or unsupported token symbol — may return empty or error response
- Network/infrastructure downtime on Railway.app hosting — service unavailable
- Missing required 'type' or 'method' fields in input — returns validation error
- Rate limiting or quota exceeded for the pass ID

## 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 (paid: true), a unique pass ID and receipt ID, the SKU identifier (oracle.seal), a non-financial-advice flag (nfa: true), and the underlying oracle market intelligence signals (whale flow, smart money, sentiment) for the queried token.

## 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-121dcd08/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)
