# Cryptyx Metric Slicer Scan

> Cryptyx Metric Slicer Scan is a paid API for AI agents from www.cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Scans a single metric across ~200 crypto assets and returns z-score extremes ranked by percentile, identifying outliers above or below a given threshold.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/metrics/slicer/scan
- 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/cryptyx-metric-slicer-scan-5e52262e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ljylbgQsOd3xum1RW2x0e

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-metric-slicer-scan-5e52262e
```

Example prompt: Scan all ~200 crypto assets for z-score extremes on TR_TREND_STRENGTH_14D right now — show me everything above an absolute z-score of 3 using the abs_gt operator, ranked by percentile.

## When to prefer this

Use this endpoint when you need a cross-asset universe scan for a single metric — i.e., 'who across all 200 assets is extreme on X right now?' Prefer this over per-asset endpoints when you don't have a target asset in mind and want to discover outliers. Use instead of the backtest endpoint when you want live current readings rather than historical hit rates. Ideal for screening and anomaly detection workflows.

## Known failure modes

- Invalid metric_id returns 400 with metric not found error
- Invalid operator value (not in gt/lt/gte/lte/abs_gt) returns 400 validation error
- Missing required query parameters (metric_id, operator, threshold) returns 400
- Payment not included or insufficient USDC results in 402 Payment Required
- No assets exceed the threshold — returns empty extremes array with total_scanned count
- Threshold set too low floods response with near-trivial results

## How this service works

Scans a requested market metric across assets and returns the matching symbols, score statistics, and health context. Useful for filtering cross-sectional signals like rate of change, momentum, and related metrics.

## Output

Returns a ranked list of assets with z-score extremes for the specified metric, including each asset's z-score value, percentile rank, and the total number of assets scanned (typically ~200). Results are sorted by z-score magnitude so the most extreme outliers appear first.

## 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": [
      "metric_id",
      "operator",
      "threshold"
     ],
     "properties": {
      "operator": {
       "enum": [
        "gt",
        "lt",
        "gte",
        "lte",
        "abs_gt"
       ],
       "type": "string",
       "description": "Filter operator on the 365d-window z-score"
      },
      "metric_id": {
       "type": "string",
       "example": "TR_ROC_180D",
       "description": "Metric ID to scan, e.g. TR_MOMO_CONT_14D, TR_ROC_180D, VOL_COMPRESSION_7v30 (uppercased internally)"
      },
      "threshold": {
       "type": "number",
       "example": 2,
       "description": "Z-score threshold (coerced to number)"
      }
     }
    }
   },
   "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-metric-slicer-scan-5e52262e/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)
