Where signals converge.
Trading intelligence for autonomous agents. 11 tools. Pay per call. No signup.
Natural language processing on real-time crypto social feeds and news, distilled into a directional score.
Central bank policy, risk appetite, and macro conditions classified by AI into actionable regime states.
Funding rates, open interest, and liquidation flow on Hyperliquid, analyzed for structural bias.
11 tools for Claude, Cursor, and any MCP client. Signals, sentiment, regime, arena strategies, web search, code execution.
npx [email protected]
Sync and async client. 7 API methods.
pip install signalfuse
Auto-discoverable. Agents find and pay for signals without configuration.
No API keys. No signup. Your wallet is your identity. USDC on Base.
{ "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" }
No payment. No signup. Provide a wallet address, receive a token, and call any endpoint immediately.
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 · Valid 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 import httpx r = httpx.get("https://api.signalfuse.co/v1/signal/BTC", headers={"X-Credit-Token": token}) print(r.json())
A production-ready algorithmic trading bot for Hyperliquid perpetuals. SignalFuse signals are built in. Claim your complimentary credits, clone the repo, and begin.
git clone https://github.com/hypeprinter007-stack/hyperliquid-starter-bot cd hyperliquid-starter-bot pip install -r requirements.txt cp .env.example .env # Add your Hyperliquid keys + SignalFuse credit token python main.py
Base URL: https://api.signalfuse.co
Authenticate with an X-Credit-Token header or let x402 handle payment automatically. All endpoints return JSON.
Two payment methods. Use either one:
Credit tokens -- Pass an X-Credit-Token header. Get 25 free via /v1/credits/trial, or purchase bulk packs.
x402 per-call -- No token needed. Use the x402 SDK and payments are handled automatically on 402 responses. USDC on Base.
/v1/pricing, /v1/credits/trial, and /v1/credits/balance are free -- no authentication required.