# 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 cripto-app-v1-production.up.railway.app, 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, billed per query via x402/USDC.

## Facts

- Endpoint: GET https://cripto-app-v1-production.up.railway.app/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-560c4096
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HHUHBMNnVmzIrvhrD7qSe

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-560c4096
```

Example prompt: Pull the CriptoNous Hermes Wire intelligence snapshot for SOL — I want to see whale flow, smart money signals, and current sentiment before I make a move.

## When to prefer this

Choose this endpoint when you need a bundled, pay-per-query snapshot of on-chain whale flow, smart money positioning, sentiment, and oracle signals for a specific crypto token without committing to a subscription. It is especially useful for agents making opportunistic or infrequent trading research queries where per-call billing at $0.04 USDC is preferable to recurring API fees. Prefer it over generic price APIs when you specifically want behavioral/flow intelligence rather than just price data.

## Known failure modes

- Payment not included or rejected — returns HTTP 402 with payment required details
- Invalid or unsupported token symbol — may return empty or error response
- Service unavailable on Railway deployment — HTTP 500 or timeout
- Missing required x402 payment header — request blocked before processing
- Token symbol not recognized by oracle — partial or null signal fields

## 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 returning the SKU identifier, pass ID, and receipt ID along with market intelligence data (whale flow, smart money signals, sentiment, oracle signals) for the requested token. The response includes an 'ok' boolean, a 'nfa' (not financial advice) flag, and payment confirmation fields.

## 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-560c4096/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)
