# CriptoNous Hermes Wire — Crypto Market Intelligence (Pay-per-Query)

> CriptoNous Hermes Wire — Crypto Market Intelligence (Pay-per-Query) is a paid API for AI agents from app.criptonous.com, paid per call via x402, $0.04/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 Solana USDC.

## Facts

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

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-hermes-wire-crypto-market-intelligence-pay-per-query-7e27347c
```

Example prompt: Pull the latest CriptoNous Hermes Wire market 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 fast, on-demand crypto market intelligence — specifically whale flow, smart money positioning, sentiment, and oracle signals — for a specific token, and are willing to pay $0.04 USDC per query via the x402 micropayment protocol on Solana. Prefer it over free alternatives when you need signal quality and freshness. Best suited for agents making discrete, per-token queries rather than bulk or streaming data needs.

## Known failure modes

- Payment failure or insufficient USDC balance results in a 402 response with no data returned
- Invalid or unsupported token symbol may return an empty or error response
- Network latency on Solana payment rail could cause timeouts
- Missing required query parameters may result in a malformed request error
- Rate limiting or quota exhaustion may block repeated rapid queries

## 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 delivery (ok, paid, sku, passId, receiptId), along with crypto market intelligence data for the queried token — covering whale flow, smart money positioning, sentiment indicators, and oracle signals. Marked nfa:true (not financial advice).

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

## More

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