# CRYPTYX Harness Evaluations — Daily Setup Signals

> CRYPTYX Harness Evaluations — Daily Setup Signals 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 all canonical trading setup evaluations for a given day across 200+ crypto assets, with z-scores, distance-to-trigger in sigma, confidence, and state filters (fires, boundary, silent, first_ever).

## Facts

- Endpoint: GET https://cryptyx.ai/api/v1/harness/evaluations
- 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-harness-evaluations-daily-setup-signals-bf1f1c41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eXzixiiJLjMJJuN5xGPWz

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-harness-evaluations-daily-setup-signals-bf1f1c41
```

Example prompt: Show me all boundary and first_ever setup evaluations firing today across the CRYPTYX coverage universe, including z-scores and distance-to-trigger for each asset.

## When to prefer this

Use this endpoint when you need a structured, filterable daily snapshot of all setup evaluations across the CRYPTYX universe — especially when you want to screen for highest-signal states (boundary, first_ever) or drill into a specific asset, factor family, or date. Prefer this over the dense time-series endpoint when you want today's actionable setups rather than historical metric depth, and over the cross-sectional z-score scanner when you need setup-level state and confidence rather than raw metric rankings.

## Known failure modes

- Invalid or future asof_day returns empty results or an error
- Unknown asset symbol returns no matching evaluations
- Invalid state filter value returns a validation error
- Payment not completed (x402) results in 402 response blocking data access
- Asset outside the 200+ coverage universe returns no data
- Requesting evaluations for days before the backtested history range may return incomplete data

## How this service works

Every canonical setup evaluation for a given day, filterable by state (fires / boundary / silent / first_ever), factor family, or asset. Includes z_scores per metric, distance_to_trigger, confidence. Distance is measured in sigma — positive = past threshold, negative = short of threshold. Boundary + first_ever states are the highest-signal reads. 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 list of canonical setup evaluation records for the requested day and filters. Each record includes the asset, setup state (fires/boundary/silent/first_ever), factor family, z-scores per metric, distance_to_trigger expressed in sigma (positive = past threshold, negative = short of threshold), and a confidence score. Boundary and first_ever states are flagged as highest-signal reads.

## 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": {
      "asset": {
       "type": "string",
       "description": "Asset filter."
      },
      "state": {
       "type": "string",
       "description": "fires | boundary | silent | first_ever."
      },
      "family": {
       "type": "string",
       "description": "Factor family filter."
      },
      "asof_day": {
       "type": "string",
       "description": "YYYY-MM-DD. Defaults to latest evaluated day."
      }
     }
    }
   },
   "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-harness-evaluations-daily-setup-signals-bf1f1c41/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)
