# CRYPTYX Agent Context — Digital Asset Intelligence Layer

> CRYPTYX Agent Context — Digital Asset Intelligence Layer is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a real-time intelligence snapshot across digital assets, including top-ranked assets, bullish/bearish factor breadth, and aggregated signal trigger counts

## Facts

- Endpoint: GET https://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-agent-context-digital-asset-intelligence-layer-3c69673a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KiJ5-U0ugrdjH0ovFDgsQ

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-agent-context-digital-asset-intelligence-layer-3c69673a
```

Example prompt: Pull the latest CRYPTYX agent context for BTC — I want to see its intelligence score, whether the overall market factor breadth is leaning bullish or bearish, and how many signals are firing right now.

## When to prefer this

Use this endpoint when an AI agent needs a high-level, real-time intelligence snapshot of the crypto market — especially when deciding which assets to focus on, assessing overall market sentiment via factor breadth, or monitoring aggregate signal activity. Prefer this over raw price feeds or on-chain data sources when you need pre-computed, multi-metric intelligence scores rather than raw data.

## Known failure modes

- Missing or invalid asset symbol returns context for all assets (graceful degradation)
- Payment not received or x402 payment header missing returns 402 Payment Required
- Service unavailable or data pipeline lag returns 503 or stale data indicator
- Rate limit exceeded returns 429 Too Many Requests
- Invalid API key or authentication failure returns 401 Unauthorized

## How this service works

One-shot agent grounding snapshot in 200-400ms — factor breadth, top/bottom composite assets with regime, recent signal aggregation, platform counts, and pipeline status. Call before any market reasoning task. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

Returns a JSON object containing: an array of top-ranked assets each with a composite intelligence score (e.g. BTC at 0.42), factor breadth counts for both bullish and bearish signals across all tracked metrics, and a signal summary showing total active trigger count (e.g. 421 triggers). If an optional asset parameter is passed, context may be scoped to that asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "description": "Optional asset for per-asset context"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "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-agent-context-digital-asset-intelligence-layer-3c69673a/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)
