# Crypto Market Sentiment (Fear & Greed + News Blend)

> Crypto Market Sentiment (Fear & Greed + News Blend) 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-13).

Returns a composite crypto market sentiment score combining the Fear & Greed index with aggregated news-headline sentiment, optionally filtered by coin or query.

## Facts

- Endpoint: GET https://api.agentstools.dev/crypto/sentiment-ctl
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-market-sentiment-fear-greed-news-blend-0db518f1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RPX0Zd7KGu3QMQUG68ARn

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-market-sentiment-fear-greed-news-blend-0db518f1
```

Example prompt: What's the current crypto market sentiment for Bitcoin — is it bullish, bearish, or neutral? Give me the Fear and Greed index and the blended news sentiment score.

## When to prefer this

Choose this endpoint when you need a single unified crypto sentiment signal that combines both the well-known Fear & Greed index and news-driven sentiment in one call. Prefer it over the raw timing-fng endpoint when you also want news headline sentiment blended in, or when you need coin-specific sentiment rather than just broad market data.

## Known failure modes

- No data available for the specified coin symbol — returns empty or null coin-specific result
- Upstream Fear & Greed API or RSS feed unavailable — may return stale or partial data
- Invalid or unrecognized coin query — endpoint may fall back to overall market sentiment
- Rate limiting or payment failure for the x402 micropayment — returns 402 Payment Required

## 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 current Fear & Greed index value and classification (e.g. 'Extreme Fear', 'Greed'), its recent trend, aggregated news-headline sentiment, and a final blended bullish/bearish/neutral 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-market-sentiment-fear-greed-news-blend-0db518f1/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)
