Poll-based event detection for spot + Jupiter Perps
Poll-based event detection for spot + Jupiter Perps. Pass a watchlist (<=10 tokens, <=10 wallets) and a `since` ISO 8601 timestamp; get alerts fired since then. Token alerts: price spikes/drops, whale inflow/outflow, concentration shifts. Wallet alerts: risk changes, portfolio value moves, position add/remove. Perps alerts per wallet: position add/close, at-risk, liquidation-approaching, pnl-swing. Stateless; the agent owns the `since` cursor.
8000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.solenrich.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "66Qvhr1xnwqbCT36KfHfZF1JpoWdmCQ3uFYTN335CGXe",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "8000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8EdE9eD2E6ACdd9B2BaFa42ff4078d3F3263607c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "8000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"since": "2026-06-01T00:00:00Z"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"output": {
"briefing": "string (llm format) or object (json format)"
},
"run_id": "uuid",
"status": "succeeded"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"criteria": {
"description": "Optional alert thresholds",
"properties": {
"min_concentration_shift_pct": {
"description": "Default 5 — fire on top-1 holder concentration shifts ≥ this magnitude",
"minimum": 0,
"type": "number"
},
"min_portfolio_change_pct": {
"description": "Default 20 — fire on wallet portfolio moves ≥ this percentage",
"minimum": 0,
"type": "number"
},
"min_price_change_pct": {
"description": "Default 10 — fire on token price moves ≥ this percentage",
"minimum": 0,
"type": "number"
},
"min_risk_score_delta": {
"description": "Default 0.15 — fire on risk score deltas ≥ this magnitude",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"min_whale_volume_usd": {
"description": "Default 50000 — fire on whale net flow ≥ this USD value",
"minimum": 0,
"type": "number"
},
"perp_liquidation_buffer_pct": {
"description": "Default 15 — fire liquidation_approaching when collateral buffer (100%% + PnL%%) drops below this",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"perp_max_leverage": {
"description": "Default 10 — fire perp_at_risk when position leverage ≥ this",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"perp_min_pnl_swing_pts": {
"description": "Default 25 — fire pnl_swing when unrealized PnL%% moves by this many points since prior snapshot",
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"format": {
"default": "json",
"enum": [
"json",
"llm",
"both"
],
"type": "string"
},
"since": {
"description": "ISO 8601 timestamp — return alerts fired since this moment",
"format": "date-time",
"type": "string"
},
"tokens": {
"description": "Token mints to monitor",
"items": {
"maxLength": 44,
"minLength": 32,
"type": "string"
},
"maxItems": 10,
"type": "array"
},
"wallets": {
"description": "Wallet addresses to monitor (spot + Jupiter Perps)",
"items": {
"maxLength": 44,
"minLength": 32,
"type": "string"
},
"maxItems": 10,
"type": "array"
}
},
"required": [
"since"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.solenrich.com/entrypoints/check-alerts/invoke" # -> 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.solenrich.com/entrypoints/check-alerts/invoke");
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.solenrich.com/entrypoints/check-alerts/invoke")
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/4221.json, and this resource appears in /discovery/resources and /discovery/search.