Batch trading signals for multiple crypto assets
Batch trading signals for multiple crypto assets
75000 (raw units)
price
5
calls / 30d
2
unique payers
2026-09-15
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": "75000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"symbols": {
"description": "Comma-separated symbols, e.g. BTC,ETH,SOL. Omit for all 10 assets.",
"required": false,
"type": "string"
}
},
"type": "http"
},
"output": {
"example": {
"count": 10,
"signals": {
"BTC": {
"components": {
"macro": {
"label": "bullish",
"score": 0.8
},
"market": {
"label": "bullish",
"score": 0.7
},
"social": {
"label": "bullish",
"score": 0.6
}
},
"confidence": 0.85,
"regime": "risk_on",
"signal": "long",
"signal_strength": 72,
"symbol": "BTC"
}
}
},
"type": "json"
}
},
"schema": {
"output": {
"properties": {
"count": {
"type": "integer"
},
"signals": {
"additionalProperties": {
"properties": {
"components": {
"type": "object"
},
"confidence": {
"type": "number"
},
"regime": {
"type": "string"
},
"signal": {
"enum": [
"long",
"short",
"neutral"
],
"type": "string"
},
"signal_strength": {
"type": "integer"
},
"symbol": {
"type": "string"
}
},
"type": "object"
},
"description": "Map of symbol to signal object",
"type": "object"
}
},
"required": [
"signals",
"count"
]
}
}
}
}Use it
curl
curl "https://api.signalfuse.co/v1/signal/batch" # -> 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/batch");
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/batch")
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/12834.json, and this resource appears in /discovery/resources and /discovery/search.