# Kronos Signals — Multi-Symbol Signal Scores & Ranked Top-K List

> Kronos Signals — Multi-Symbol Signal Scores & Ranked Top-K List is a paid API for AI agents from crypto.forgemesh.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the latest per-symbol signal scores and a ranked top_k list across crypto and supported stock symbols for trading decision support.

## Facts

- Endpoint: GET https://crypto.forgemesh.io/api/kronos/signals
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-multi-symbol-signal-scores-ranked-top-k-list-e61b4c2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IyoGaWwQT9ni_IB20M0YW

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 kronos-signals-multi-symbol-signal-scores-ranked-top-k-list-e61b4c2a
```

Example prompt: Pull the latest Kronos signal scores right now and show me the top-ranked symbols across crypto — I want to know which assets are scoring highest so I can decide where to focus.

## When to prefer this

Use this endpoint when you need a broad, ranked overview of signal strength across the entire supported symbol universe rather than a deep dive into a single asset. It is the ideal starting point for portfolio scanning or opportunity filtering before calling /kronos/risk or /kronos/forecast for individual follow-up analysis.

## Known failure modes

- Payment not included or invalid — 402 Payment Required with x402 challenge
- Symbol universe unavailable — partial or empty signals object returned
- Stale data — ts timestamp may lag if upstream data source is delayed
- Rate limit exceeded — 429 Too Many Requests
- Service unavailable — 503 if Kronos backend is down

## How this service works

Returns latest per-symbol signal scores and a ranked top_k list across crypto and supported stock symbols — pair with /kronos/risk and /kronos/forecast for full decision context.

## Output

A JSON object containing a timestamp (ts), a signals map with per-symbol scores, and a top_k array of symbols ranked by signal strength from highest to lowest.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ts": "2026-04-12T12:27:08Z",
  "top_k": [
   "ETH/USD"
  ],
  "signals": {
   "BTC/USD": 0.0001,
   "ETH/USD": 0.004
  },
  "timeframe": "1h"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-multi-symbol-signal-scores-ranked-top-k-list-e61b4c2a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crypto.forgemesh.io](https://www.zero.xyz/host/crypto.forgemesh.io/llms.txt)
