# CriptoNous Swarm Pulse — Crypto Market Intelligence

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

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

## Facts

- Endpoint: GET https://cripto-app-v1-production.up.railway.app/x402/resource/swarm.pulse
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-swarm-pulse-crypto-market-intelligence-43fc0707
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NYgqLvF2_jORZSPMR0Lj-

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-swarm-pulse-crypto-market-intelligence-43fc0707
```

Example prompt: Pull the CriptoNous swarm pulse for SOL right now — I want to see whale flow, smart money signals, and market sentiment for Solana.

## When to prefer this

Use this endpoint when you need real-time, aggregated crypto market intelligence combining whale flow, smart money activity, sentiment, and oracle signals in a single pay-per-query call — particularly for Solana-ecosystem tokens priced in USDC. Prefer this over generic price feeds when the goal is behavioral/flow analysis rather than raw price data.

## Known failure modes

- Payment failure — insufficient USDC balance results in 402 response and no data returned
- Invalid token symbol — unrecognized symbol may return empty or error response
- Service unavailable — Railway-hosted backend may have cold-start latency or downtime
- No data for symbol — niche or low-liquidity tokens may have no signal data
- Rate limiting — excessive queries may trigger throttling

## 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 the query was paid and processed, including fields: ok (boolean), nfa disclaimer (true), sku identifier ('swarm.pulse'), paid status, a passId, and a receiptId. The actual intelligence signals (whale flow, smart money, sentiment, oracle) are embedded in the response payload.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-swarm-pulse-crypto-market-intelligence-43fc0707/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)
