# Cryptyx AI Regime Cell Context

> Cryptyx AI Regime Cell Context is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns historical performance statistics for a specific (horizon, regime_label) pair — including occurrence count, mean forward return, hit rate, and the last 5 instances — to answer 'what happened next when this regime appeared before?'

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/regime-cell-context
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-regime-cell-context-094f7941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H6PuYZtIiy0zsPGWs_554

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 cryptyx-ai-regime-cell-context-094f7941
```

Example prompt: Pull up the historical performance stats for the 'consolidation' regime over a 30-day horizon — I want to know how many times it's appeared before, the average forward return, hit rate, and the last 5 instances.

## When to prefer this

Use this endpoint when you need regime-conditional historical statistics for a specific macro regime label and forward-return horizon — ideal for backtesting how a crypto portfolio or strategy would have performed after similar past regimes. Prefer this over generic price history endpoints when the question is 'given THIS regime, what has historically followed?' rather than unconditional price queries.

## Known failure modes

- Invalid or unrecognized regime label returns an error or empty results
- Horizon value not in the allowed enum (1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d) causes a validation error
- Insufficient historical data for a rare regime/horizon combination may return low n_prints or no instances
- Payment not processed (x402) results in 402 Payment Required response
- Network timeout or service unavailability returns a 5xx error

## How this service works

Historical performance of a specific (horizon, regime_label) cell — n_prints, mean 30d forward return, hit rate, and last 5 instances. Answers "when this regime showed up before, what happened next?" — analytical primitive for regime-conditional strategy backtesting.

## Output

Returns a structured object containing: the number of historical occurrences (n_prints) of the specified (horizon, regime_label) cell, the mean 30-day forward return across those occurrences, the hit rate (proportion of positive outcomes), and a list of the last 5 individual instances with their dates and returns. This enables regime-conditional backtesting and strategy validation.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "horizon",
      "label"
     ],
     "properties": {
      "label": {
       "type": "string",
       "description": "Regime label (e.g. expansion, consolidation, deleveraging)"
      },
      "horizon": {
       "type": "string",
       "description": "One of: 1d, 7d, 14d, 30d, 60d, 90d, 180d, 365d"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-ai-regime-cell-context-094f7941/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptyx.ai](https://www.zero.xyz/host/cryptyx.ai/llms.txt)
