One call: the whole basket's rebalancing signal (returns, volatility, RSI, trend, relative
One call: the whole basket's rebalancing signal (returns, volatility, RSI, trend, relative strength, correlation) plus an inverse-volatility target-weight signal for NVDA/META/AAPL/GOOGL. Decide weights, then execute via the free /v1/set-weights + /v1/rebalance. Aggregated data, not investment advice.
40000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.liquidagent.ai · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x487b28A4FbbA8Cf46eb6E1d72e6959202Bb75e90",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x487b28A4FbbA8Cf46eb6E1d72e6959202Bb75e90",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "40000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"vault": "Optional. Your vault address (0x…40 hex); adds current-vs-su"
},
"type": "http"
},
"output": {
"example": {
"asOf": "2026-09-02T14:00:00.000Z",
"basket": [
{
"priceUsd": 180.1,
"relStrength": 1.1,
"returnM1Pct": 4.2,
"rsi14": 57.3,
"symbol": "NVDAc",
"trend": "up",
"volAnnualPct": 38.5
}
],
"basketStats": {
"avgReturnM1Pct": 2.9,
"avgVolAnnualPct": 31.2,
"correlation": [
[
1,
0.6,
0.5,
0.55
]
]
},
"signals": {
"rebalanceSuggested": true,
"riskParityWeightsBps": [
2100,
2400,
2900,
2600
]
},
"vault": {
"address": "0x…",
"currentWeightsBps": [
2500,
2500,
2500,
2500
],
"vsSuggested": [
{
"currentBps": 2500,
"driftBps": -400,
"suggestedBps": 2100,
"symbol": "NVDAc"
}
]
}
},
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"method": {
"const": "GET"
},
"queryParams": {
"properties": {
"vault": {
"description": "Optional. Your vault address (0x…40 hex); adds current-vs-suggested weights and drift.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http"
}
},
"type": "object"
},
"output": {
"properties": {
"example": {
"asOf": "2026-09-02T14:00:00.000Z",
"basket": [
{
"priceUsd": 180.1,
"relStrength": 1.1,
"returnM1Pct": 4.2,
"rsi14": 57.3,
"symbol": "NVDAc",
"trend": "up",
"volAnnualPct": 38.5
}
],
"basketStats": {
"avgReturnM1Pct": 2.9,
"avgVolAnnualPct": 31.2,
"correlation": [
[
1,
0.6,
0.5,
0.55
]
]
},
"signals": {
"rebalanceSuggested": true,
"riskParityWeightsBps": [
2100,
2400,
2900,
2600
]
},
"vault": {
"address": "0x…",
"currentWeightsBps": [
2500,
2500,
2500,
2500
],
"vsSuggested": [
{
"currentBps": 2500,
"driftBps": -400,
"suggestedBps": 2100,
"symbol": "NVDAc"
}
]
}
},
"type": {
"const": "json"
}
},
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.liquidagent.ai/v1/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://api.liquidagent.ai/v1/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://api.liquidagent.ai/v1/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/9100.json, and this resource appears in /discovery/resources and /discovery/search.