# Carbon & Cashmere ETH Technical Indicators API

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

Returns real-time technical indicators for Ethereum (ETH) including SMA, MACD, RSI, and Bollinger Bands on a 4-hour interval

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/indicators/ETH
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/carbon-cashmere-eth-technical-indicators-api-7237a430
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4tP2UjLe9nZ7K8yP36PFq

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 carbon-cashmere-eth-technical-indicators-api-7237a430
```

Example prompt: Pull the latest technical indicators for ETH — I want to see the RSI-14, MACD, Bollinger Bands, and the 20/50/200-bar SMAs so I can gauge whether it's overbought or showing a bullish crossover right now.

## When to prefer this

Use this endpoint when you need structured, pre-computed technical indicators for ETH specifically (RSI, MACD, SMA, Bollinger Bands) without having to calculate them yourself from raw OHLCV data. Prefer this over raw price feeds when your agent needs market signal context for trading decisions, portfolio alerts, or market commentary. The sibling 'trend analytics' endpoint (ADX) or 'mean-reversion analytics' endpoint may complement this for a fuller picture.

## Known failure modes

- Symbol not supported — endpoint is specifically for ETH; other symbols may return 404 or empty
- Cache miss may cause slightly higher latency on first request
- Stale data if upstream price feed is delayed — check timestamp in _meta
- Malformed response if API is under maintenance
- Payment failure via x402 protocol if USDC balance is insufficient

## How this service works

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

## Output

A JSON object containing ETH technical indicators: SMA values at 20, 50, and 200 periods; MACD line, signal, and histogram; RSI-14 value; Bollinger Band upper, lower, middle values and width percentage; plus metadata including data source, cache status, timestamp, disclaimer, and number of data points used (based on 30-day lookback on 4h candles).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "source": "local_4h",
   "cache_hit": false,
   "timestamp": "2026-04-21T19:00:00Z",
   "disclaimer": "Informational research data only — not investment advice.",
   "data_points": 180
  },
  "symbol": "BTC",
  "interval": "4h",
  "indicators": {
   "sma": {
    "20": 68200,
    "50": 66800,
    "200": 62100
   },
   "macd": {
    "line": 234.5,
    "signal": 221.1,
    "histogram": 13.4
   },
   "rsi_14": 52.4,
   "bollinger": {
    "lower": 64700,
    "upper": 72100,
    "width": 0.108,
    "middle": 68400
   }
  },
  "lookback_days": 30
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-eth-technical-indicators-api-7237a430/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)
