# Stratalize Crypto Correlation Benchmark

> Stratalize Crypto Correlation Benchmark is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a rolling correlation matrix (Pearson pairs), beta to BTC, dominance, and portfolio diversification signal for BTC, ETH, and SOL over a configurable lookback period.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/get_crypto_correlation_benchmark
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-stratalize-com-c574fe86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-ITgl1HueYI7d8fzc3zT2

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 www-stratalize-com-c574fe86
```

Example prompt: Can you pull the 30-day rolling correlation matrix for BTC, ETH, and SOL — I need the Pearson pairs, their betas to BTC, and the portfolio diversification signal to see if my crypto holdings are actually diversified?

## When to prefer this

Use this endpoint when you need quantitative correlation and diversification metrics specifically for BTC, ETH, and SOL — particularly when building portfolio risk reports, assessing crypto concentration risk, or determining whether a crypto allocation provides genuine diversification. Prefer this over general market data endpoints when the specific output needed is Pearson correlation pairs and beta-to-BTC statistics.

## Known failure modes

- Invalid period value (not 7d, 30d, or 90d) returns a validation error
- Insufficient historical price data from DeFiLlama for the requested period may result in partial or null values
- Payment failure (x402 protocol) if USDC balance is insufficient — returns 402 Payment Required
- Service unavailability results in 5xx error

## How this service works

Use when a crypto portfolio manager needs diversification context. Returns 30-day rolling correlation matrix for BTC, ETH, SOL — Pearson pairs, beta to BTC, dominance, and portfolio diversification signal. Source: DeFiLlama historical prices. Every response is attested for integrity verification in regulated automation workflows.

## Output

Returns a 30-day (or 7d/90d) rolling correlation matrix with Pearson correlation coefficients for all BTC/ETH/SOL pairs, each asset's beta to BTC, dominance metrics, and a portfolio diversification signal derived from DeFiLlama historical price data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "period": {
   "enum": [
    "7d",
    "30d",
    "90d"
   ],
   "type": "string",
   "description": "Request parameter: period"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-stratalize-com-c574fe86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
