# CRYPTYX Setup Catalog — Multi-Metric Composition Browser

> CRYPTYX Setup Catalog — Multi-Metric Composition Browser is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a filtered list of up to 150 founder-approved, multi-metric trading setups organized across 8 factor families, each with composition, primary horizon, and backtest snapshot pointer

## Facts

- Endpoint: GET https://cryptyx.ai/api/v1/harness/setups
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-setup-catalog-multi-metric-composition-browser-37a5feae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7djcJkPLWKXPKRJW7BLLr

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-setup-catalog-multi-metric-composition-browser-37a5feae
```

Example prompt: Pull up all active tier-2 structural long setups in the volatility factor family from CRYPTYX — I want to see what multi-metric compositions are available for BTC.

## When to prefer this

Use this endpoint when you need to discover or browse the canonical CRYPTYX setup catalog — i.e., to enumerate available multi-metric compositions, filter by factor family, direction, asset, tier, or durability class before deciding which setups to evaluate or monitor. Prefer this over the daily setup evaluation endpoint when you want the static setup definitions themselves rather than live firing state, and over the raw metric dump when you want curated, pre-composed signal recipes rather than raw data.

## Known failure modes

- Invalid factor_family value returns 400 with enum mismatch error
- Filtering to an asset outside the 200+ coverage universe returns empty list or 404
- Invalid tier value (outside 1-5) returns validation error
- Invalid direction value returns 400
- Expired or missing x402 payment credential returns 402 Payment Required
- Conflicting filter combination returns empty result set with no error

## How this service works

Canonical setup catalog list — 150 founder-approved multi-metric compositions across 8 factor families + cross-family fades. Filter by factor_family (TR/EFF/VOL/FLOW/FUT/OB/OPT/CORR/CROSS_FAMILY), tier (1-5), direction (long/short/neutral), asset (in applicable_assets), or durability_class (structural for 90d+ high-Sharpe, tactical for small-sample, hybrid for the rest). Each setup ships display_name, composition, primary_horizon, backtest snapshot pointer. The shipping surface — not a raw metric database. Applicable across the CRYPTYX 200+ asset coverage universe (BTC, ETH, SOL, top-cap + long-tail); backtested scope is the 33-asset curated slice.

## Output

A paginated catalog of up to 150 trading setup objects, each containing: display_name, factor_family (TR/EFF/VOL/FLOW/FUT/OB/OPT/CORR/CROSS_FAMILY), composition (multi-metric recipe), primary_horizon, backtest snapshot pointer, applicable_assets list, tier (1-5), direction (long/short/neutral), and durability_class (structural/tactical/hybrid).

## 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",
     "properties": {
      "tier": {
       "type": "number",
       "description": "Tier 1 (foundational plain-English) through 5 (multi-factor sophistication)."
      },
      "asset": {
       "type": "string",
       "description": "Filter to setups whose applicable_assets includes this asset."
      },
      "family": {
       "type": "string",
       "description": "Factor family filter: TR / EFF / VOL / FLOW / FUT / OB / OPT / CORR / CROSS_FAMILY."
      },
      "direction": {
       "type": "string",
       "description": "long | short | neutral."
      },
      "active_only": {
       "type": "boolean",
       "description": "Default true."
      },
      "durability_class": {
       "type": "string",
       "description": "structural | tactical | hybrid."
      }
     }
    }
   },
   "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-setup-catalog-multi-metric-composition-browser-37a5feae/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)
