Fused sentiment, macro regime & market structure. One signal. Pay per call or buy in bulk. No account needed.
NLP on real-time crypto social feeds & news
Central bank & macro policy classification via AI
Funding rates, open interest & liquidation flow on Hyperliquid
{ "symbol": "BTC", "signal": "long", "signal_strength": 74, "confidence": 0.81, "regime": "risk_on", "components": { "social": { "score": 0.62, "label": "bullish" }, "macro": { "score": 0.71, "label": "risk_on" }, "market": { "score": 0.55, "label": "long_bias" } }, "updated_at": "2026-04-02T14:30:00Z" }
Drop your wallet address, get a token, start calling endpoints. If the signals are garbage, you wasted nothing.
curl -X POST https://api.signalfuse.co/v1/credits/trial \ -H "Content-Type: application/json" \ -d '{"wallet": "0xYOUR_WALLET_ADDRESS"}'
curl https://api.signalfuse.co/v1/signal/BTC \ -H "X-Credit-Token: YOUR_TOKEN_HERE"
25 credits per wallet · Works on all endpoints · No expiration
| Endpoint | Price |
|---|---|
| /v1/sentiment/{symbol} | $0.002 |
| /v1/regime | $0.001 |
| /v1/signal/{symbol} | $0.010 |
| /v1/signal/batch | $0.050 |
| Pack | Credits | Starting Price | Per Call |
|---|---|---|---|
| Starter | 500 | $4.00 | ~$0.008 |
| Pro | 5,000 | $30.00 | ~$0.006 |
Prices increase 2% every 25,000 credits sold. Lock in today's rate.
Credits never expire. Top up anytime.
pip install x402 httpx from x402.client import x402Client from x402.http.clients.httpx import x402HttpxClient client = x402HttpxClient(x402Client()) signal = client.get("https://api.signalfuse.co/v1/signal/BTC") print(signal.json())
# 1. Buy a credit pack (one x402 payment) pack = client.post("https://api.signalfuse.co/v1/credits/buy", json={"pack": "pro"}) token = pack.json()["credit_token"] # 2. Use token for all future calls (no per-call payment) import httpx r = httpx.get("https://api.signalfuse.co/v1/signal/BTC", headers={"X-Credit-Token": token}) print(r.json())