# Crypto Sentiment Tag

> Crypto Sentiment Tag 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 composite crypto market sentiment score (bullish/bearish/neutral) blending the Fear & Greed index with aggregated news headline sentiment, optionally filtered by coin or query.

## Facts

- Endpoint: GET https://api.agentstools.dev/crypto/sentiment-tag
- 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-sentiment-tag-6b79f909
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AIn3MWPsrw_pi56G0jCfM

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-sentiment-tag-6b79f909
```

Example prompt: What's the current crypto market sentiment — is it bullish, bearish, or neutral? Pull the composite Fear & Greed plus news headline sentiment score, and focus it on Bitcoin if you can.

## When to prefer this

Choose this endpoint when you need a single, opinionated sentiment classification that combines both quantitative market fear/greed signals and qualitative news sentiment in one call. Prefer this over raw Fear & Greed-only endpoints (like timing-fng) when you want news headlines factored in. Use it when building trading signals, daily briefings, or market mood dashboards that need a blended bullish/bearish/neutral label rather than raw index numbers alone.

## Known failure modes

- No coin match found for the given symbol — returns neutral or unfiltered result
- RSS feed or Fear & Greed API upstream unavailable — may return stale or partial data
- Invalid query parameter type — returns 400 validation error
- Rate limiting or payment failure for x402 protocol — 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

A composite sentiment object containing the Fear & Greed index value, its classification (e.g. Extreme Fear, Greed), its trend direction, aggregated news headline sentiment, and a final blended bullish/bearish/neutral tag — 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-sentiment-tag-6b79f909/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)
