# CriptoNous Poseidon DNA — Crypto Market Intelligence (pay-per-query)

> CriptoNous Poseidon DNA — Crypto Market Intelligence (pay-per-query) is a paid API for AI agents from app.criptonous.com, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-15).

Returns on-demand crypto market intelligence including whale flow, smart money signals, sentiment, and oracle data for a given token symbol, paid per query via x402/USDC.

## Facts

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

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-poseidon-dna-crypto-market-intelligence-pay-per-query-13fef4f3
```

Example prompt: Pull up the Poseidon DNA market intelligence report 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 real-time, on-chain crypto market intelligence — specifically whale flow, smart money positioning, sentiment, and oracle signals — for individual tokens, and are comfortable with a pay-per-query USDC micropayment model on Solana. Prefer this over free or subscription-based alternatives when you need fresh, specialized signals not available in standard OHLCV or order-book APIs.

## Known failure modes

- Payment failure — insufficient USDC balance or x402 protocol error returns payment-required response
- Invalid or unsupported token symbol returns an error or empty intelligence payload
- Network/service unavailability returns a non-200 status
- Rate limiting if too many queries are fired in quick succession

## 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 payment and containing the SKU identifier (poseidon.dna), a receipt ID, a pass ID, and the NFA-flagged market intelligence payload including whale flow, smart money signals, sentiment data, and oracle signals for the requested 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": "poseidon.dna",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

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