# Carbon & Cashmere SOL Technical Indicators API

> Carbon & Cashmere SOL 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-15).

Returns real-time technical indicators (SMA, MACD, RSI, Bollinger Bands) and market signals for Solana (SOL) on a 4-hour interval

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/indicators/SOL
- 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/carbon-cashmere-sol-technical-indicators-api-ac1b9c3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zyd3mGZO8roUBqOxTZmm9

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-sol-technical-indicators-api-ac1b9c3e
```

Example prompt: Pull up the latest technical indicators for SOL — I need the RSI, MACD, and Bollinger Bands so I can see if it's overbought or showing any strong momentum signals right now.

## When to prefer this

Use this endpoint when you need structured, multi-indicator technical analysis for SOL specifically, including classic indicators like SMA, MACD, RSI, and Bollinger Bands in a single call. Prefer this over raw price feeds when you need computed signals rather than just spot prices, and over the full bundle endpoint when you only need standard TA indicators without ML or HMM outputs.

## Known failure modes

- Invalid symbol returns error or empty response
- Cache miss may result in slightly higher latency
- Payment failure (x402) if USDC balance is insufficient — 0.01 USDC required per call
- Rate limiting if too many requests in a short window
- Stale data if upstream market data source is delayed

## How this service works

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

## Output

A JSON object containing real-time technical indicators for SOL including SMA at 20/50/200 periods, MACD line/signal/histogram values, RSI-14, and Bollinger Band upper/lower/middle/width values, along with metadata about the data source, cache status, timestamp, and a disclaimer that this is informational only.

## 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-sol-technical-indicators-api-ac1b9c3e/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)
