# Crypto Fear & Greed Index + News Sentiment

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

Returns a blended crypto market sentiment score combining the Fear & Greed index (value, classification, trend) with aggregated news-headline sentiment, optionally filtered by coin or query.

## Facts

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

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-news-sentiment-b2180ee7
```

Example prompt: What's the current crypto market sentiment — is it fearful or greedy — and what does recent news say about Bitcoin right now?

## When to prefer this

Choose this endpoint when you need a single blended crypto sentiment signal that combines both the established Fear & Greed index and real-time news sentiment in one call, especially when you want coin-specific sentiment rather than general market mood. Prefer it over raw Fear & Greed APIs when news context matters, or over pure NLP sentiment tools when you also want the quantitative Fear & Greed dimension.

## Known failure modes

- No coin match found if an unrecognized ticker is supplied
- Upstream alternative.me API unavailable causing stale or missing Fear & Greed data
- RSS feed unavailable resulting in news sentiment component being absent
- Rate limiting or payment failure (x402) returning 402 status
- Empty or noisy results if query string is too broad or ambiguous

## 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 a composite sentiment object including the Fear & Greed index numeric value, its classification (e.g. Extreme Fear, Fear, Neutral, Greed, Extreme Greed), a trend direction, aggregated news-headline sentiment score, and a final blended bullish/bearish/neutral classification — 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-news-sentiment-b2180ee7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
