crypto-sentiment-api is an early-stage HTML project in the AI payments / x402 ecosystem, focused on ai-agents, api, base-network, crypto. It currently has 0 GitHub stars and 0 forks, and sits alongside related tools like gold-402, x402-payment-gateway, x402-pay, nexflow-pulse-docs, awesome-molt-ecosystem, tdm-integration-kit.
Real-time crypto sentiment analysis powered by Reddit social data. Built for AI agents using the x402 protocol.
Live API: https://crypto-sentiment-api-production.up.railway.app
Website: genvox.io
x402scan: View on x402scan
GenVox analyzes real-time sentiment from Reddit's cryptocurrency communities to generate actionable BUY/SELL/NEUTRAL trading signals. Perfect for AI trading bots, portfolio managers, and autonomous agents.
curl -X GET https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/BTC \
-H "X-Payment: <x402-payment-proof>"
{
"coin": "BTC",
"signal": "STRONG BUY",
"score": 0.234,
"sentiment": {
"positive": 65,
"negative": 15,
"neutral": 20
},
"mentions": 147,
"trend": "up",
"timestamp": "2025-12-19T21:45:00Z"
}
GET /v1/sentiment/{COIN}
Supported Coins:
BTC - BitcoinETH - Ethereum SOL - SolanaDOGE - DogecoinADA - CardanoXRP - RippleDOT - PolkadotMATIC - PolygonLINK - ChainlinkUNI - UniswapX-Payment: <x402-payment-proof>
The payment proof should be a valid x402 protocol payment of 0.03 USDC on Base network.
| Field | Type | Description |
|---|---|---|
coin |
string | Coin symbol (e.g., "BTC") |
signal |
string | Trading signal: "STRONG BUY", "BUY", "NEUTRAL", "SELL", "STRONG SELL" |
score |
number | Sentiment score from -1 (very negative) to +1 (very positive) |
sentiment.positive |
number | Percentage of positive mentions |
sentiment.negative |
number | Percentage of negative mentions |
sentiment.neutral |
number | Percentage of neutral mentions |
mentions |
number | Total Reddit posts analyzed |
trend |
string | Price trend direction: "up", "down", "sideways" |
timestamp |
string | ISO 8601 timestamp of analysis |
| Score Range | Signal | Meaning |
|---|---|---|
0.15 to 1.0 |
STRONG BUY | Very bullish sentiment |
0.05 to 0.15 |
BUY | Bullish sentiment |
-0.05 to 0.05 |
NEUTRAL | Mixed or unclear sentiment |
-0.15 to -0.05 |
SELL | Bearish sentiment |
-1.0 to -0.15 |
STRONG SELL | Very bearish sentiment |
const axios = require('axios');
async function getCryptoSentiment(coin) {
const response = await axios.get(
`https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/${coin}`,
{
headers: {
'X-Payment': '<your-x402-payment-proof>'
}
}
);
return response.data;
}
// Usage
getCryptoSentiment('BTC').then(data => {
console.log(`Signal: ${data.signal}`);
console.log(`Score: ${data.score}`);
console.log(`Mentions: ${data.mentions}`);
});
import requests
def get_crypto_sentiment(coin):
url = f"https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/{coin}"
headers = {
"X-Payment": "<your-x402-payment-proof>"
}
response = requests.get(url, headers=headers)
return response.json()
# Usage
data = get_crypto_sentiment("ETH")
print(f"Signal: {data['signal']}")
print(f"Score: {data['score']}")
print(f"Trend: {data['trend']}")
# Get Bitcoin sentiment
curl -X GET \
https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/BTC \
-H "X-Payment: <your-x402-payment-proof>"
# Get Ethereum sentiment
curl -X GET \
https://crypto-sentiment-api-production.up.railway.app/v1/sentiment/ETH \
-H "X-Payment: <your-x402-payment-proof>"
X-Payment header// Your AI trading bot
async function makeTradeDecision(coin) {
// 1. Pay via x402
const paymentProof = await x402.pay({
amount: "0.03",
currency: "USDC",
recipient: "crypto-sentiment-api-production.up.railway.app"
});
// 2. Call GenVox API
const sentiment = await fetch(`/v1/sentiment/${coin}`, {
headers: { 'X-Payment': paymentProof }
});
// 3. Make decision
if (sentiment.signal === "STRONG BUY" && sentiment.score > 0.2) {
return executeBuy(coin);
} else if (sentiment.signal === "STRONG SELL") {
return executeSell(coin);
}
return "HOLD";
}
Real-time sentiment signals for automated trading strategies. Combine with price data and technical indicators for informed decisions.
Monitor sentiment across multiple assets. Rebalance portfolios based on community sentiment shifts.
Track sentiment trends over time. Analyze correlation between Reddit sentiment and price movements.
Trigger notifications when sentiment for specific coins reaches extreme levels (strong buy/sell signals).
| Query Type | Price | Payment Method |
|---|---|---|
| Single Sentiment Query | $0.03 USDC | x402 protocol on Base |
No subscriptions. No rate limits. Pay per use.
Updated automatically on x402scan
If your agent is experiencing issues:
Proprietary - For x402 protocol use only
This API is provided as-is for AI agents via the x402 protocol. Commercial use outside x402 requires permission.
GenVox is part of the Break the Cubicle project - documenting the journey of building for the AI agent economy.
First API built in 4 hours. Now serving real AI agents. Building in public.
If you're using GenVox or building your own x402 APIs, star this repo to show support!
🤖 Built for the Agent Economy
⚡ The gold standard for x402 resources. 300+ projects, SDKs, tools, facilitators, and ecosystem data for the HTTP 402 Payment Required protocol. Curated by 24K Labs.
HTTP 402 Payment Required middleware — monetize AI agent APIs with per-call USDC micropayments via x402 protocol (Stripe + Base)
Open-source x402 payment processor for AI agents. Sub-400ms settlement on Solana + 7 EVM chains. Let LLMs pay for APIs programmatically with USDC. npm: nory-x402
NexFlow Pulse is a cloud scheduler for agents and APIs. It lets you programmatically create and manage HTTP jobs that run on precise intervals or cron expressions, with per‑execution billing (0.0015 USDC) and x402‑ready, wallet‑paid API access for autonomous agents. Developers can use Pulse to trigger webhooks, background tasks, and agent workflows
The brutally honest map of where AI-agent money actually flows. 51 rounds, 137 angles, 230+ platforms. 3 self-hosted x402 v2 endpoints + 3 tools in the official MCP Registry. 385K star distribution.
Developer integration tools for adding TDM payments to AI agents, apps, and workflows. CLI, MCP server, and copy-paste examples
Client SDK, Claude plugin and skill framework for the Pinion protocol. x402 micropayments on Base.
Building blocks for Agentic payments (x402, MPP, AP2) for TypeScript, Rust, Go, Python, Ruby, PHP, Lua, Kotlin and Swift.
Building blocks for Agentic payments (x402, MPP, AP2) for TypeScript, Rust, Go, Python, Ruby, PHP, Lua, Kotlin and Swift.
Turn any API or MCP server into a paid service with x402
Public adapters and discovery catalog for Triptych OS (Agent OS): agent frameworks, MCP/A2A/x402 protocols, workflows, wallets, SDKs, and examples for execute-first routing, governed handoffs, and receipt-aware agent commerce.
A wallet for agents. Make payments via x402, use stablecoins, swap assets, earn yield with defi and buy tokenized stocks across the most popular chains.