# CRYPTYX Factor Cross-Section

> CRYPTYX Factor Cross-Section is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a ranked cross-section of digital assets or a single asset scored across quantitative factor dimensions (e.g. trend, momentum) with t-scores.

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/factor-cross-section
- 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/cryptyx-factor-cross-section-b10ee19e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Fg9P5-z5CBbbA1bxDHbY_

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-factor-cross-section-b10ee19e
```

Example prompt: Pull the full market factor cross-section from CRYPTYX and show me the top-ranked assets by t-score right now — I want to see which coins are leading across factor classes.

## When to prefer this

Use this endpoint when you need a quantitative, multi-factor ranking or scoring of crypto assets — especially for systematic/quant strategies, asset screening, or identifying factor-driven leaders. Prefer over generic price or sentiment APIs when t-score or factor-class granularity is required.

## Known failure modes

- Invalid mode value (not 'market' or 'asset') returns 400
- Unknown asset symbol returns empty or 404
- Payment not completed returns 402
- Rate limit exceeded returns 429
- Service unavailable during maintenance returns 503

## How this service works

Factor term-structure grid — 7 classes by 8 horizons of market-average t-score with breadth counts and 1-day momentum delta. Per-asset mode adds delta-vs-market per cell. Read rotation in one matrix. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

Returns an array of assets ranked by factor signal strength, each with a rank integer, asset symbol, factor class code (e.g. TR for trend), and a t-score indicating signal magnitude.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "type": "string",
   "description": "market or asset"
  },
  "asset": {
   "type": "string",
   "description": "Asset symbol (e.g. BTC, ETH, SOL)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "factors": [
  {
   "rank": 1,
   "asset": "BTC",
   "class": "TR",
   "t_score": 1.42
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-factor-cross-section-b10ee19e/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)
