SignalFuse

Where signals converge.

Trading intelligence for autonomous agents. 11 tools. Pay per call. No signup.


Three dimensions, one signal

I

Social Sentiment

Natural language processing on real-time crypto social feeds and news, distilled into a directional score.

II

Macro Regime

Central bank policy, risk appetite, and macro conditions classified by AI into actionable regime states.

III

Market Structure

Funding rates, open interest, and liquidation flow on Hyperliquid, analyzed for structural bias.


Every integration your agent needs

MCP Server

11 tools for Claude, Cursor, and any MCP client. Signals, sentiment, regime, arena strategies, web search, code execution.

npx [email protected]

Python SDK

Sync and async client. 7 API methods.

pip install signalfuse

Coinbase Bazaar

Auto-discoverable. Agents find and pay for signals without configuration.

Zero Friction

No API keys. No signup. Your wallet is your identity. USDC on Base.


/v1/signal/BTC

JSON
{
  "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"
}

Begin with 25 complimentary signals

No payment. No signup. Provide a wallet address, receive a token, and call any endpoint immediately.

1. Claim your credits
curl -X POST https://api.signalfuse.co/v1/credits/trial \
  -H "Content-Type: application/json" \
  -d '{"wallet": "0xYOUR_WALLET_ADDRESS"}'
2. Use your token
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


Transparent and simple

Pay Per Call

x402 -- USDC on Base, no account needed
EndpointPrice
/v1/sentiment/{symbol}$0.002
/v1/regime$0.001
/v1/signal/{symbol}$0.010
/v1/signal/batch$0.050

Bulk Credits

Purchase once, use without expiration
PackCreditsStarting PricePer Call
Starter500$4.00~$0.008
Pro5,000$30.00~$0.006

Prices increase 2% every 25,000 credits sold. Lock in today's rate.
Credits never expire. Top up anytime.


Your first signal in two lines

Per-Call (x402)
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())
Bulk Credits
# 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())

Hyperliquid Starter Bot

A production-ready algorithmic trading bot for Hyperliquid perpetuals. SignalFuse signals are built in. Claim your complimentary credits, clone the repo, and begin.

  • Market and limit orders, position management
  • Fused signal layer with sentiment, macro, and market structure
  • Credit tokens or x402 per-call payment
  • Clean async Python -- bring your own strategy
  • MIT licensed
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
View on GitHub Claim Free Credits

Endpoints

Base URL: https://api.signalfuse.co

Authenticate with an X-Credit-Token header or let x402 handle payment automatically. All endpoints return JSON.

GET /v1/signal/{symbol} Fused directional signal with strength, confidence, regime, and component scores $0.010
GET /v1/signal/batch Fused signals for multiple assets in a single call $0.050
GET /v1/sentiment/{symbol} Raw social sentiment score aggregated from Twitter, Reddit, and Telegram $0.002
GET /v1/regime Current macro risk regime classified from Fed policy and market structure $0.001

Authentication

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.