Real-time crypto sentiment for a ticker symbol (e.g
Real-time crypto sentiment for a ticker symbol (e.g. BTC, ETH, SOL). Aggregates 8 crypto news RSS outlets (CoinDesk, Cointelegraph, Decrypt, Bitcoin Magazine, The Block, CryptoSlate, NewsBTC, CryptoPotato) and the Fear & Greed Index. Returns a bullish/bearish/neutral label, sentiment score, and per-source breakdown as JSON. Useful for trading bots and market research agents. Path param: symbol, e.g. /sentiment/BTC.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
190 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://crypto-sentiment-x402.onrender.com/sentiment/:symbol
| Category | Market data |
|---|---|
| Provider host | crypto-sentiment-x402.onrender.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 190 ms |
Example input (from the provider)
{
"method": "GET",
"pathParams": {
"symbol": "BTC"
},
"queryParams": {
"method": "GET",
"symbol": "BTC"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"queryParams": {
"properties": {
"method": {
"description": "HTTP method, always GET",
"type": "string"
},
"symbol": {
"description": "Uppercase ticker symbol, e.g. BTC, ETH, SOL",
"type": "string"
}
},
"required": [
"method",
"symbol"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"name": {
"type": "string"
},
"overall_sentiment": {
"type": "object"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol",
"overall_sentiment"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}