# Carbon & Cashmere Signal API – SOL Trend Endpoint

> Carbon & Cashmere Signal API – SOL Trend Endpoint 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 trend signals for Solana (SOL) including ADX strength, direction, support/resistance levels, price momentum, and regime duration.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/trend/SOL
- 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-signal-api-sol-trend-endpoint-e7666af3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_itIWXPe6dTbiwRcI9Aq7q

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-signal-api-sol-trend-endpoint-e7666af3
```

Example prompt: What's the current trend signal for SOL — is it in an uptrend or downtrend, how strong is it by ADX, and how far is the price from its 30-day support and resistance?

## When to prefer this

Use this endpoint when you need a concise, real-time technical trend snapshot for SOL specifically — including ADX-based strength scoring and regime duration — without needing to compute indicators yourself. Prefer this over generic price APIs when trend direction, support/resistance levels, and momentum classification are all needed in one call.

## Known failure modes

- Invalid or unsupported coin symbol returns an error
- Payment not processed (x402 payment required) results in 402 response
- Network timeout or upstream data feed unavailability causes 5xx error
- Stale data if market feed is delayed

## How this service works

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

## Output

A JSON object containing SOL's current price, ADX-14 value, trend strength label (weak/moderate/strong/very_strong), trend direction (up/down), 30-day support and resistance prices, percentage above support, percentage below resistance, daily slope percent, and number of days in the current trend regime. Includes a disclaimer that data is informational only.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "_meta": {
   "disclaimer": "Informational research data only — not investment advice."
  },
  "adx_14": 28.4,
  "symbol": "BTC",
  "strength": "moderate",
  "direction": "up",
  "support_30d": 62000,
  "current_price": 68500,
  "resistance_30d": 74000,
  "pct_above_support": 10.48,
  "slope_pct_per_day": 0.42,
  "pct_below_resistance": 7.43,
  "duration_days_in_regime": 8.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-signal-api-sol-trend-endpoint-e7666af3/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)
