# Carbon Cashmere Strategy Performance API

> Carbon Cashmere Strategy Performance API is a paid API for AI agents from api.carbon-cashmere.de, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns historical performance metrics for quantitative trading strategies including win rate, Sharpe ratio, max drawdown, kill-switch status, and recent trade history.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/strategy-performance
- 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/api-carbon-cashmere-de-99ec3518
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8iO634rxEiBuBaO8wvLzJ

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 api-carbon-cashmere-de-99ec3518
```

Example prompt: Pull the latest performance track record from the Risk Engine for all three strategies — I want to see win rates, Sharpe ratios, max drawdown, and whether the kill switch is active.

## When to prefer this

Use this endpoint when you need structured, research-grade historical performance data for Carbon Cashmere's proprietary quantitative strategies, including granular trade-level history, risk metrics (Sharpe, drawdown), and operational status (kill-switch). Prefer this over generic price feeds or market data endpoints when the goal is evaluating strategy quality or tracking algorithmic trading performance over time.

## Known failure modes

- Invalid strategy enum value returns error — must be one of: funding_morning_72h, high_confidence_24h, funding_high_conf_24h, all
- Payment not included or insufficient (x402 payment required at $0.05 USDC per call)
- Strategy with no completed trades may return null Sharpe ratio
- Stale data if underlying risk engine has not updated recently

## How this service works

Professional crypto market intelligence. Real-time prices, signals, and market scoring.

## Output

Returns a portfolio summary (paper capital, total PnL %, max drawdown %, kill-switch status) and an array of strategy objects each containing name, win/loss counts, win rate, total trades, average PnL %, Sharpe ratio, total PnL %, active positions, status, last trade date, and a list of recent individual trades with timestamp, coin, entry price, PnL %, and direction. Also includes a data freshness timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "strategy": "high_confidence_24h"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "portfolio": {
   "paper_capital": 100000,
   "total_pnl_pct": 40.2
  },
  "strategies": [
   {
    "name": "funding_morning_72h",
    "status": "active",
    "win_rate": 100,
    "sharpe_ratio": 2.1,
    "total_pnl_pct": 40.2
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-carbon-cashmere-de-99ec3518/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.carbon-cashmere.de](https://www.zero.xyz/host/api.carbon-cashmere.de/llms.txt)
