# Cryptyx Top Setups for Asset

> Cryptyx Top Setups for Asset 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-15).

Returns the top-grade trading signals currently firing on a single crypto asset, including hit rate and mean forward return per signal.

## Facts

- Endpoint: GET https://www.cryptyx.ai/api/asset/top-setups
- 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-top-setups-for-asset-4d03b417
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hi8BxiV3gS3CN7TUsnm-G

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-top-setups-for-asset-4d03b417
```

Example prompt: What are the top-grade signals firing on SOL right now, using a 7-day forward return horizon? I want to know which setups have the best hit rates and mean returns.

## When to prefer this

Use this endpoint when you need a fast, asset-specific entry point to understand which signals are most actionable on a single crypto asset right now. Prefer this over the full universe screener when you already have a target asset and want to understand its current signal landscape quickly, especially as a first step before a deeper dive into a full asset thesis.

## Known failure modes

- Missing required 'symbol' query parameter returns a 400 error
- Invalid or unsupported asset symbol returns an empty setup array or 404
- Invalid horizon value (not 7d/14d/30d) may return a 400 or default to a fallback horizon
- Payment not provided or insufficient results in a 402 Payment Required response
- No signals currently firing for the asset returns an empty setups array

## How this service works

CRYPTYX | institutional-grade crypto intelligence: 150+ signals, 440+ metrics, 200+ assets. | Per-asset historical signal edge. For one symbol at 7d/14d/30d, returns up to 6 health-grade A/B atomic signals that actually worked on THIS asset, grouped into reversal/continuation/breakout lanes (max 2 per lane). Each setup: signal_id, name, class, grade, tags, n_triggers, hit_rate, mean_fwd_return, median_fwd_return, last_triggered, ic_global, hit_rate_global, score, plus `walk_forward` block per setup at the requested horizon (is_ic, oos_ic, overfit_ratio, ic_delta, reliability_grade) from analytics.signal_eval_wf_day — the per-asset trigger evidence and universe-wide walk-forward robustness side by side. Anti-predictive signals filtered (Phase N11 gate); MIN_TRIGGERS=3. Scope: signals_only.

## Output

A JSON object listing the asset symbol and an array of top signals currently firing, each with a grade (e.g. A), a signal ID, a hit rate (e.g. 0.64), and a mean forward return (e.g. 0.085). Provides an immediate answer to 'why should I look at this asset today?'

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Asset ticker (uppercased server-side), e.g. BTC, ETH, SOL"
      },
      "horizon": {
       "type": "string",
       "description": "Forward-return horizon for ranking: 7d, 14d, or 30d. Defaults to 14d."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "application/json",
 "example": {
  "asset": "BTC",
  "setups": [
   {
    "grade": "A",
    "hit_rate": 0.64,
    "signal_id": "VOL_COMPRESSION_7v30",
    "mean_fwd_return": 0.085
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-top-setups-for-asset-4d03b417/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)
