# CriptoNous Kairos Panic — Crypto Market Panic Signal

> CriptoNous Kairos Panic — Crypto Market Panic Signal is a paid API for AI agents from app.criptonous.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns a panic/fear signal for a given crypto token based on whale flow, smart money, sentiment, and oracle data on Solana USDC (pay-per-query via x402).

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/kairos.panic
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-kairos-panic-crypto-market-panic-signal-d414e154
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q0CtPSRroLnwPZ-jK7Nmn

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-kairos-panic-crypto-market-panic-signal-d414e154
```

Example prompt: Check CriptoNous for a panic signal on SOL right now — I want to know if whales are fleeing and whether smart money is showing distress.

## When to prefer this

Choose this endpoint when you need a fast, targeted panic/fear signal for a specific crypto token (SOL, BTC, ETH, etc.) and want whale flow, smart money, sentiment, and oracle signals aggregated into a single pay-per-query call. Ideal for agents that need to gate trading decisions on real-time market distress indicators without maintaining a persistent subscription. Use this over general price APIs when the goal is detecting abnormal fear events or smart money flight rather than simple price lookups.

## Known failure modes

- Payment failure: USDC payment on Solana not completed — returns 402 with payment required details
- Invalid token symbol: unrecognized or unsupported symbol returns an error or empty signal
- Rate limiting or quota exceeded: too many requests may result in 429 or similar throttling
- Network/oracle unavailability: if underlying data feeds are down, signal may be stale or unavailable
- Missing required fields: omitting required input parameters returns a validation error

## 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 with a boolean panic signal (ok), confirmation of payment (paid), the SKU identifier (kairos.panic), a pass ID, and receipt ID. The NFA flag indicates the response is for analysis only and not financial advice. The actual market intelligence data (whale flow, smart money, sentiment, oracle signals) is embedded in the response body 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": "kairos.panic",
  "paid": true,
  "passId": "pass_example",
  "receiptId": "rcpt_example"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/criptonous-kairos-panic-crypto-market-panic-signal-d414e154/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)
