# Crypto Fear & Greed Index with News Sentiment

> Crypto Fear & Greed Index with News Sentiment is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a blended crypto market sentiment score combining the Fear & Greed index (value, classification, trend) with aggregated RSS news-headline sentiment into a single bullish/bearish/neutral signal, optionally filtered by coin or query.

## Facts

- Endpoint: GET https://api.agentstools.dev/crypto/sentiment-nm
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-fear-greed-index-with-news-sentiment-0d44fa0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9e7qO2FgF3RcuQpQ93RKd

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 crypto-fear-greed-index-with-news-sentiment-0d44fa0e
```

Example prompt: What's the current crypto market sentiment — give me the Fear and Greed index score, its classification, and how it blends with recent news headlines to give an overall bullish or bearish signal for Bitcoin.

## When to prefer this

Use this endpoint when you need a single blended sentiment signal that combines both the quantitative Fear & Greed index and qualitative news-headline sentiment in one call. Prefer this over the timing-fng sibling if you also want news sentiment integrated. Prefer over timing-indicators if you want sentiment rather than on-chain valuation metrics. Ideal for pre-trade sentiment checks, daily market mood snapshots, or coin-specific sentiment queries.

## Known failure modes

- Coin symbol not recognized — returns generic market sentiment instead of coin-specific
- Upstream Fear & Greed API unavailable — endpoint may return stale or error response
- RSS headline feed temporarily unavailable — news sentiment component may be absent or degraded
- Invalid query parameter format — may return 400 or empty result

## How this service works

Composite crypto market sentiment: the Fear & Greed index (value, classification, trend) blended with aggregated news-headline sentiment into one bullish/bearish/neutral score, optionally focused on a coin or query. Data by alternative.me (attributed) + curated RSS headlines.

## Output

Returns the current Fear & Greed index numeric value and its classification (e.g. Extreme Fear, Fear, Neutral, Greed, Extreme Greed), a trend indicator, aggregated news-headline sentiment, and a unified bullish/bearish/neutral composite score. Optionally scoped to a specific coin or query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "coin": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-fear-greed-index-with-news-sentiment-0d44fa0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
