# CriptoNous Kairos Regime — Crypto Market Intelligence (pay-per-query)

> CriptoNous Kairos Regime — 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.05/call, status unknown (last checked 2026-09-13).

Returns the current market regime signal for a crypto token (e.g. SOL, BTC) including whale flow, smart money, sentiment, and oracle indicators, paid per-query in USDC via x402.

## Facts

- Endpoint: GET https://cripto-app-v1-production.up.railway.app/x402/resource/kairos.regime
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/criptonous-kairos-regime-crypto-market-intelligence-pay-per-query-e4529221
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b5IjgKOv6_pQ4Iy_bbNSb

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-intelligence-pay-per-query-e4529221
```

Example prompt: What's the current Kairos market regime for SOL? Check the CriptoNous signal — I want to know if we're in an accumulation or distribution phase based on whale flow and smart money.

## When to prefer this

Choose this endpoint when you need a concise, pay-per-query market regime classification for a specific crypto token — combining whale flow, smart money, sentiment, and oracle signals in a single call — without committing to a subscription. Ideal for agents that need occasional on-chain intelligence rather than continuous streaming data.

## Known failure modes

- Payment failure if USDC balance is insufficient or x402 payment header is malformed
- Token symbol not found or unsupported — returns error or empty signal
- Railway.app hosting downtime or cold-start latency causing timeouts
- Stale or unavailable oracle data resulting in incomplete signal
- Missing or invalid input parameters causing 400-level errors

## 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 the paid query was processed, including the SKU identifier (kairos.regime), a pass ID, a receipt ID for the USDC micropayment, and the regime intelligence payload (market regime classification, whale flow, smart money signals, sentiment, and oracle data) for the requested 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.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-intelligence-pay-per-query-e4529221/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)
