# CriptoNous Kairos Regime — Crypto Market Regime Intelligence

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

Returns the current market regime classification for a crypto token using whale flow, smart money, sentiment, and oracle signals — paid per query via Solana USDC.

## Facts

- Endpoint: GET https://app.criptonous.com/x402/resource/kairos.regime
- Price: $0.05/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-regime-crypto-market-regime-intelligence-ec5eb983
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_erRdoLSUqykO9yvyxvQbX

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-regime-crypto-market-regime-intelligence-ec5eb983
```

Example prompt: What's the current Kairos regime signal for SOL from CriptoNous — is smart money bullish, bearish, or neutral right now?

## When to prefer this

Choose this endpoint when you need a structured, machine-readable market regime classification for a specific crypto token combining whale flow, smart money positioning, sentiment, and oracle signals — especially when operating in an autonomous agent context where pay-per-query Solana USDC microtransactions are acceptable. Prefer this over raw on-chain data sources when you want pre-processed regime intelligence rather than raw transaction data.

## Known failure modes

- Payment not received or insufficient USDC balance — returns 402 Payment Required
- Invalid or unsupported token symbol — may return empty or error result
- Network or API downtime — returns 5xx error
- Malformed query parameter — returns 400 Bad Request

## 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 indicating whether the request was paid and processed successfully, the SKU identifier (kairos.regime), a pass ID, a receipt ID, and a not-financial-advice flag — along with the regime classification data for the requested token (whale flow, smart money sentiment, oracle signals).

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

## More

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