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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
902 msmedian answer time
$0.008listed price per call
$0.008price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.solenrich.com/entrypoints/check-alerts/invoke
| Category | Market data |
|---|---|
| Provider host | api.solenrich.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.008 | 902 ms |
Example input (from the provider)
{
"body": {
"since": "2026-06-01T00:00:00Z"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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 \u2014 fire on top-1 holder concentration shifts \u2265 this magnitude",
"minimum": 0,
"type": "number"
},
"min_portfolio_change_pct": {
"description": "Default 20 \u2014 fire on wallet portfolio moves \u2265 this percentage",
"minimum": 0,
"type": "number"
},
"min_price_change_pct": {
"description": "Default 10 \u2014 fire on token price moves \u2265 this percentage",
"minimum": 0,
"type": "number"
},
"min_risk_score_delta": {
"description": "Default 0.15 \u2014 fire on risk score deltas \u2265 this magnitude",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"min_whale_volume_usd": {
"description": "Default 50000 \u2014 fire on whale net flow \u2265 this USD value",
"minimum": 0,
"type": "number"
},
"perp_liquidation_buffer_pct": {
"description": "Default 15 \u2014 fire liquidation_approaching when collateral buffer (100%% + PnL%%) drops below this",
"maximum": 100,
"minimum": 0,
"type": "number"
},
"perp_max_leverage": {
"description": "Default 10 \u2014 fire perp_at_risk when position leverage \u2265 this",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"perp_min_pnl_swing_pts": {
"description": "Default 25 \u2014 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 \u2014 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"
}