# Carbon & Cashmere Factor Analytics – SOL

> Carbon & Cashmere Factor Analytics – SOL 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 multi-factor crypto market intelligence for Solana (SOL), including carry, crowding, momentum, volatility regimes, and a composite bullish/bearish score.

## Facts

- Endpoint: GET https://api.carbon-cashmere.de/v1/factor-analytics/SOL
- 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/carbon-cashmere-factor-analytics-sol-779a16c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mElSL6AttNh8YHfnOwbVC

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-factor-analytics-sol-779a16c8
```

Example prompt: What are the current factor analytics for SOL — give me the carry, crowding, momentum, and volatility regimes along with the composite market score so I can see if it's in a bullish or bearish bias right now.

## When to prefer this

Use this endpoint when you specifically need quantitative multi-factor regime analysis for SOL — carry, crowding, momentum, and volatility scored together into a composite signal. Prefer this over generic price feeds when you need interpretable market regime labels (e.g. 'bullish_bias_low_vol') rather than raw price ticks. Best suited for systematic trading research, portfolio signal generation, or AI agents making conditional decisions based on crypto market conditions.

## Known failure modes

- Symbol not supported — 404 or empty response if requested coin is not tracked
- Payment not processed — 402 if x402 micropayment header is missing or insufficient
- Rate limiting — 429 if call quota exceeded
- Stale data — analytics may lag if upstream market data feed is delayed
- Malformed response if service is under maintenance

## How this service works

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

## Output

A JSON object containing factor analytics for SOL: carry (value + regime), crowding (value + regime), momentum (value + regime), volatility (value + regime + 90-day percentile), a composite_label (e.g. 'bullish_bias_low_vol'), and a composite_score (0–1 float). Also includes a disclaimer meta field.

## 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."
  },
  "symbol": "BTC",
  "factors": {
   "carry": {
    "value": 12.4,
    "regime": "long_paying"
   },
   "crowding": {
    "value": 0.42,
    "regime": "crowded_long"
   },
   "momentum": {
    "value": 0.087,
    "regime": "positive"
   },
   "volatility": {
    "value": 0.48,
    "regime": "compressed",
    "percentile_90d": 0.21
   }
  },
  "composite_label": "bullish_bias_low_vol",
  "composite_score": 0.62
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/carbon-cashmere-factor-analytics-sol-779a16c8/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)
