# CRYPTYX Custom Composite Signal Rankings

> CRYPTYX Custom Composite Signal Rankings is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Generates a custom-weighted composite signal ranking of digital assets across configurable return horizons and metric classes

## Facts

- Endpoint: POST https://cryptyx.ai/api/signals/composite/custom
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-custom-composite-signal-rankings-938fb552
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x1xBsEpXCT4VvekT5qSz-

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-custom-composite-signal-rankings-938fb552 -d '<json body>'
```

Example prompt: Give me a CRYPTYX composite ranking of digital assets for the next 30-day horizon, with custom weights of 0.5 on trend return, 0.3 on volatility, and 0.2 on momentum — I want to see which assets score highest under my allocation.

## When to prefer this

Use this endpoint when you want to rank a universe of digital assets by a composite score built from your own blend of signal classes rather than a preset model. Ideal for systematic traders, quant analysts, or AI agents that have strong views on which metric categories matter most for a given investment horizon.

## Known failure modes

- Weights do not sum to 1.0 — returns validation error
- Invalid horizon value provided (must be 7d, 14d, or 30d)
- Unknown metric class key in weights object — rejected
- Payment of 0.25 USDC not confirmed — returns 402
- Empty or missing weights object — required field error

## How this service works

Re-rank 200+ assets under your own 8-class composite weights at 7d/14d/30d. Returns full ranking with class contributions, default-weight comparison, and top movers vs default. Stress-test your composite recipe against the production moat.

## Output

A ranked list of digital assets ordered by their custom composite score, each with a rank number, asset ticker, and computed score value, along with a confirmation of the exact class weights applied in the calculation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "weights"
 ],
 "properties": {
  "horizon": {
   "type": "string",
   "description": "Forward return horizon: 7d, 14d, or 30d"
  },
  "weights": {
   "type": "object",
   "description": "Custom class weights (must sum to 1.0)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "rankings": [
  {
   "rank": 1,
   "asset": "BTC",
   "custom_score": 0.55
  }
 ],
 "weights_applied": {
  "TR": 0.3,
  "VOL": 0.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-custom-composite-signal-rankings-938fb552/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)
