# CRYPTYX Digital Assets Intelligence API

> CRYPTYX Digital Assets Intelligence API is a paid API for AI agents from cryptyx.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns multi-metric performance snapshots or time-series data for digital assets, including returns, composite scores, and rankings across hundreds of signals.

## Facts

- Endpoint: GET https://cryptyx.ai/api/assets
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptyx-digital-assets-intelligence-api-fc7cf32c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4KB0cm1-wIEBQySyOLwTM

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-digital-assets-intelligence-api-fc7cf32c
```

Example prompt: Give me a snapshot of BTC, ETH, and SOL from CRYPTYX — I want to see their 1-day returns, 7-day returns, composite rank, and composite score.

## When to prefer this

Choose this endpoint when you need multi-signal composite intelligence scores and rankings for digital assets, not just raw price data. It is ideal for agents comparing crypto assets across many performance dimensions simultaneously, or when composite rank and return metrics across multiple timeframes are needed in a single call.

## Known failure modes

- Invalid or unrecognized asset symbols return empty or partial results
- Missing 'mode' parameter may default to snapshot or return an error
- Payment failure (402) if USDC payment is not successfully processed via x402
- Malformed 'assets' query string (e.g., wrong delimiter) may result in no matching assets
- Rate limiting if excessive calls are made in a short window

## How this service works

Per-asset snapshot or daily series — composite score, rank, recent returns, realised volatility, Sharpe ratios, plus macro regime with confidence. The 200+ asset master ranking feed for portfolio construction and rotation. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

## Output

Returns a JSON object with a count of assets and an array of asset objects, each containing the asset symbol, 1-day return, 7-day return, composite rank, and composite score derived from hundreds of signals and metrics.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "type": "string",
   "description": "snapshot or series"
  },
  "assets": {
   "type": "string",
   "description": "Comma-separated symbols"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "count": 200,
 "assets": [
  {
   "asset": "BTC",
   "ret_1d": 0.015,
   "ret_7d": 0.045,
   "comp_rank": 1,
   "comp_score": 0.42
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptyx-digital-assets-intelligence-api-fc7cf32c/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)
