# Kronos Signals Fear & Greed Index

> Kronos Signals Fear & Greed Index is a paid API for AI agents from kronossignals.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns the crypto Fear & Greed Index score (0-100) enriched with Kronos-proprietary BTC funding sentiment, open interest 1-hour trend, and 24-hour price momentum signals.

## Facts

- Endpoint: GET https://kronossignals.com/api/v1/fear-greed
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kronos-signals-fear-greed-index-30385f34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WgJCV6siBc_9ZClA51HFp

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 kronos-signals-fear-greed-index-30385f34
```

Example prompt: What's the current crypto fear and greed index, and how does it look when you factor in BTC funding sentiment and open interest trend?

## When to prefer this

Choose this endpoint when you need the Fear & Greed Index augmented with live derivatives signals (funding rate sentiment, OI trend, price momentum) rather than the raw alternative.me score alone. Ideal for crypto trading agents that want a single call combining sentiment and derivatives context without aggregating multiple data sources manually.

## Known failure modes

- Payment not included or insufficient — returns 402 Payment Required
- Rate limit exceeded — returns 429
- Service temporarily unavailable — returns 503
- Malformed request — returns 400 with error detail

## How this service works

Crypto Fear & Greed Index: alternative.me score (0-100) plus Kronos-owned context (BTC funding sentiment, OI 1h trend, 24h price momentum). Not a pure proxy — adds proprietary derivative signals. Pay-per-call via x402.

## Output

A JSON object containing the alternative.me Fear & Greed Index score (0-100) along with Kronos-proprietary context: BTC funding rate sentiment classification, open interest 1-hour trend direction, and 24-hour price momentum — giving a richer market sentiment picture than the raw index alone.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-02T10:00:00.000Z",
  "value": 75,
  "source": "alternative.me",
  "timestamp": "1751443200",
  "disclaimer": "Fear & Greed from alternative.me + Kronos derivative signals. Not financial advice.",
  "kronos_context": {
   "oi_trend": {
    "prior": 84000,
    "latest": 85000,
    "direction": "rising"
   },
   "btc_funding": {
    "rate": 0.0003,
    "sentiment": "greed"
   },
   "blended_note": "Funding in greed territory; OI rising (leverage building); price up 2.5% in 24h. Derivatives lean bullish.",
   "price_momentum": {
    "sentiment": "bullish",
    "change_pct_24h": 2.5
   }
  },
  "value_classification": "Greed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kronos-signals-fear-greed-index-30385f34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kronossignals.com](https://www.zero.xyz/host/kronossignals.com/llms.txt)
