Crypto Sentiment API
Real-time Reddit analysis • x402 Protocol • Base Network
Pay $0.03 USDC per query. No subscriptions. No API keys.
Launch on x402scan → View DocsSupported cryptocurrencies:
What you get for $0.03:
{
"coin": "BTC",
"name": "Bitcoin",
"summary": "📈 Bitcoin sentiment is BULLISH (score: 0.234) with 73% confidence based on 156 Reddit posts.",
"signal": "BULLISH",
"score": 0.234,
"scoreExplanation": "Moderate positive sentiment",
"confidence": 0.73,
"confidencePercent": "73%",
"postsAnalyzed": 156,
"positivePercent": "61%",
"neutralPercent": "27%",
"negativePercent": "12%",
"topPosts": [...],
"subredditsScanned": ["r/bitcoin", "r/BitcoinMarkets", ...]
}
Integrate with your trading bots, AI agents, or apps:
// Using x402 client SDK import { createX402Client } from '@x402/client'; const client = createX402Client({ wallet: yourWallet, network: 'base' }); const sentiment = await client.fetch( 'https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/ETH' ); console.log(sentiment.signal); // "BULLISH"
See GitHub for full integration examples.