# Cryptyx AI Agent Context Snapshot

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

Returns a full market state snapshot — factor breadth, composite asset rankings, signal trigger summary, pipeline status, and as-of date — in a single call for LLM grounding before any market analysis.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/v1/agent-context
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-ai-agent-context-snapshot-06925e44
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wsibr6Q2K5uKfh7DbM_kO

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-agent-context-snapshot-06925e44
```

Example prompt: Before you start any crypto market analysis, pull the full Cryptyx agent-context snapshot so you have today's factor breadth, top and bottom composite asset rankings, and signal trigger summary — include BTC specifically if you can.

## When to prefer this

Use this endpoint as the mandatory first call before any market analysis, signal evaluation, or asset ranking operation on the cryptyx.ai platform. It is the only endpoint that returns all grounding data — factor breadth, composite rankings, signal summary, and pipeline status — in a single parallel read, avoiding multiple round-trips. Prefer this over individual endpoints when an agent needs full situational awareness before reasoning.

## Known failure modes

- Invalid asset symbol returns empty or error response
- Pipeline not yet run for current day returns stale or missing as-of date
- Rate limiting or payment failure (x402) if USDC micropayment not processed
- Network timeout if called during pipeline computation window
- Unknown asset symbol silently ignored and full-universe context returned

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | One-shot LLM grounding snapshot. Six parallel reads in ~200-400ms. Returns asofDay, factorBreadth (assetsWithScores + activeClasses array of CORR/EFF/FLOW/FUT/OB/OPT/TR/VOL), compositeScores (topAssets top-10 + bottomAssets bottom-5, each carrying macro `regime` (expansion/consolidation/deleveraging) + `regime_confidence`), recentSignals (day, totalTriggered, bySignal aggregation), platformCounts (metrics, signals, classes), pipelineStatus (lastRunDay, status, totalDurationMs). Optional ?asset= adds perAssetMetrics: top-10 metrics ranked by absolute time-series IC with TS + CS health grades. Call before any market reasoning.

## Output

A JSON object containing: top-ranked assets with composite scores, factor breadth counts (bullish vs bearish), a signal summary with total trigger count, pipeline run status, and the as-of date. Optionally filtered to a single asset when the 'asset' query param is supplied.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string",
       "description": "Optional asset symbol (uppercased, trimmed). When set, response includes asset, perAssetMetrics (top-10 metrics by abs(time-series IC), A/B grades only, anti-predictive excluded), and gradeContextNote."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "topAssets": [
   {
    "asset": "BTC",
    "score": 0.42
   }
  ],
  "factorBreadth": {
   "bearish": 57,
   "bullish": 62
  },
  "signalSummary": {
   "total_triggers": 421
  }
 }
}
```

## More

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