Fused directional trading signal with confidence score
Fused directional trading signal with confidence score
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-06
updated
Provider
api.signalfuse.co · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xf080a1Aab08650946acDa41410a7eDC14f7Be035",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"schema": {
"properties": {
"symbol": {
"default": "BTC",
"description": "Crypto asset ticker (path parameter)",
"enum": [
"BTC",
"ETH",
"SOL",
"DOGE",
"PEPE",
"WIF",
"BONK",
"ARB",
"OP",
"AVAX"
],
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"type": "http"
},
"output": {
"example": {
"components": {
"macro": {
"label": "bullish",
"score": 0.8
},
"market": {
"label": "bullish",
"score": 0.7
},
"social": {
"label": "bullish",
"score": 0.6
}
},
"confidence": 0.85,
"data_age_seconds": 15.2,
"regime": "risk_on",
"signal": "long",
"signal_strength": 72,
"stale": false,
"symbol": "BTC",
"updated_at": "2026-04-14T12:00:00+00:00"
},
"type": "json"
}
},
"schema": {
"output": {
"properties": {
"components": {
"properties": {
"macro": {
"properties": {
"label": {
"type": "string"
},
"score": {
"type": "number"
}
},
"type": "object"
},
"market": {
"properties": {
"label": {
"type": "string"
},
"score": {
"type": "number"
}
},
"type": "object"
},
"social": {
"properties": {
"label": {
"type": "string"
},
"score": {
"type": "number"
}
},
"type": "object"
}
},
"type": "object"
},
"confidence": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"data_age_seconds": {
"type": "number"
},
"regime": {
"enum": [
"risk_on",
"risk_off",
"neutral"
],
"type": "string"
},
"signal": {
"enum": [
"long",
"short",
"neutral"
],
"type": "string"
},
"signal_strength": {
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"stale": {
"type": "boolean"
},
"symbol": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"symbol",
"signal",
"signal_strength",
"confidence",
"regime",
"components"
]
}
}
}
}Use it
curl
curl "https://api.signalfuse.co/v1/signal/OP" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.signalfuse.co/v1/signal/OP");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.signalfuse.co/v1/signal/OP")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/12828.json, and this resource appears in /discovery/resources and /discovery/search.