# CRYPTYX Market Pulse Conviction

> CRYPTYX Market Pulse Conviction is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns ranked digital assets by composite conviction score, surfacing the strongest and weakest signals across hundreds of crypto metrics

## Facts

- Endpoint: GET https://cryptyx.ai/api/market-pulse/conviction
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-market-pulse-conviction-ffd5c998
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wCVt5kG2RgoVkj7hYpomp

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-market-pulse-conviction-ffd5c998
```

Example prompt: What are the top 10 and bottom 10 crypto assets right now by conviction score — I want to see what CRYPTYX's composite intelligence is saying across all its signals.

## When to prefer this

Choose this endpoint when you need a pre-computed, multi-signal conviction ranking across the crypto market rather than single-asset price lookups or raw on-chain data. It is ideal for portfolio screening, automated trade signal generation, or any workflow where an agent needs to quickly identify the highest and lowest conviction opportunities without assembling signals from multiple sources.

## Known failure modes

- Invalid limit parameter (non-numeric) returns a 400 error
- Limit value exceeding available assets may return fewer results than requested
- Payment failure or insufficient USDC balance returns a 402 response
- Service unavailability or data pipeline lag may return a 503 or stale data
- Empty result arrays if no assets meet scoring thresholds

## How this service works

Daily "where to look" leaderboard — top-N and bottom-N assets by composite score with returns, funding/OI z-scores, signal counts, optional thematic scores, and macro regime gating. Stablecoins filtered. Response carries a _next block with thesis / active-signals / asymmetry / regime-context / trade-ideas so an agent can go from "which asset" to "what does the full CRYPTYX stack say about it" in a single hop. Runs across 200+ digital assets — BTC, ETH, SOL, top-cap + long-tail coverage.

## Output

A JSON object with two arrays: 'top' containing the highest-conviction assets (each with ticker, atomic count, and composite score) and 'bottom' containing the lowest-conviction assets with their negative composite scores — giving a ranked view of where multi-metric signal strength is concentrated and depleted across the crypto market.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Number of results to return"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "top": [
  {
   "asset": "BTC",
   "n_atomic": 10,
   "comp_score": 0.42
  }
 ],
 "bottom": [
  {
   "asset": "CORE",
   "comp_score": -0.645
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-market-pulse-conviction-ffd5c998/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)
