Live market-state data for one crypto pair: BUY/SELL/HOLD state + confidence from a multi-
Live market-state data for one crypto pair: BUY/SELL/HOLD state + confidence from a multi-timeframe engine. Machine-readable, ECDSA-signed. Input data for AI finance agents (USDC pay-per-call).
10000 (raw units)
price
8
calls / 30d
6
unique payers
2026-09-08
updated
Provider
signals.nsgoods.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc87a06DEE4c0E85912296002617120BBfd5EF990",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"pair": "BTC/USD"
},
"type": "http"
},
"output": {
"example": {
"confidence": 0.42,
"disclaimer": "Educational signal from a multi-timeframe Kraken strategy. Not financial advice. Markets can move against any signal; use independent risk management.",
"generated_at": "2026-06-06T22:00:00+00:00",
"pair": "BTC/USD",
"signal": "HOLD",
"signature": "0x10fafe37c311ef9f70d1c5b119454a553c82c0bb9981b09560485c3dc8072fc47bebad8022f12b240e02c38cbe4243a1f10b63f06502356c263dea35571974411c",
"signed_by": "0x5e63d01d6A266BC17f577B80199a2a07B15053C7",
"timeframe": "1m"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"pair": {
"default": "BTC/USD",
"description": "Any active Kraken */USD spot pair (e.g. BTC/USD, ETH/USD)",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"confidence": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"disclaimer": {
"type": "string"
},
"generated_at": {
"format": "date-time",
"type": "string"
},
"pair": {
"type": "string"
},
"signal": {
"enum": [
"BUY",
"SELL",
"HOLD"
],
"type": "string"
},
"signature": {
"type": "string"
},
"signed_by": {
"type": "string"
},
"timeframe": {
"type": "string"
}
},
"required": [
"pair",
"signal",
"confidence",
"timeframe",
"generated_at"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://signals.nsgoods.org/signals" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://signals.nsgoods.org/signals");
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://signals.nsgoods.org/signals")
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/5242.json, and this resource appears in /discovery/resources and /discovery/search.