# crypto-sent-tags

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

## Facts

- Endpoint: GET https://payai.agentstools.dev/crypto/sentiment-tag
- 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-sent-tags-237f2058
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GbvbFC483bheM9BczbjXG

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-sent-tags-237f2058
```

Example prompt: What's the current crypto market sentiment for Bitcoin — is it bullish, bearish, or neutral? Include the Fear and Greed index value and how news headlines are leaning.

## When to prefer this

Choose this endpoint when you need a single, ready-to-use sentiment signal that combines both the quantitative Fear & Greed index and qualitative news-headline sentiment into one bullish/bearish/neutral classification. Prefer it over raw Fear & Greed APIs when you also want news-driven context, and over pure news-sentiment APIs when you want the quantitative Fear & Greed baseline included. Ideal for trading decision support, portfolio monitoring alerts, or market briefings where a single composite verdict is more useful than two separate signals.

## Known failure modes

- Coin symbol not recognized — returns generic market sentiment instead of coin-specific
- Upstream alternative.me API unavailable — Fear & Greed data may be stale or missing
- No recent news headlines found for queried coin — headline sentiment component may be absent
- Invalid query parameter format — endpoint may return an error or fall back to market-wide defaults

## 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. Fear, Greed, Extreme Greed), its recent trend direction, aggregated news-headline sentiment polarity, and a final blended bullish/bearish/neutral label for the overall market or a specific coin.

## 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-sent-tags-237f2058/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)
