Get the call before your borrow gets liquidated.
Yieldbase watches your Aave V3 positions every minute. When health factor crosses your thresholds, we fire a signed webhook, Telegram message, and email — fast enough to act before the keepers do.
Why this matters
Liquidation = bad day
Aave penalty alone is 5–10% of your collateral. Add gas, slippage, and the panic — easily 15%+ vs paying down a fraction in time.
Existing tools are free or enterprise
DeBank is best-effort. Hexagate / Forta target institutions. We sit in the middle: mid-market SLA-backed alerts at $5–$29/mo.
Real on-chain reads
We call Aave's getUserAccountData directly each tick — no oracle desync, no third-party indexer latency.
Pricing
Starter
For solo borrowers protecting a single big position.
- Up to 3 positions
- 1-minute monitor cadence
- Webhook + Telegram + Email channels
- HMAC-signed webhook payloads
- Aave V3 (Ethereum, Base, Polygon, Arbitrum, Optimism)
Pro
For active borrowers, vaults, and shared treasuries.
- Up to 25 positions
- 30-second monitor cadence
- Multi-channel + escalation chain
- Pol-curated deleverage signal hints
- Priority support email
RapidAPI
For developers integrating alerts into their own product.
- 10,000 monitor checks/mo
- Read-only public API access
- OpenAPI 3 spec + sample SDKs
- Listed via RapidAPI marketplace
How fast you can ship
curl -X POST http://localhost:3210/positions \
-H "x-api-key: $ALERT_API_KEY" \
-H "content-type: application/json" \
-d '{
"protocol": "aave-v3",
"chainId": 1,
"user": "0xYourBorrower",
"thresholds": [1.15, 1.05],
"channels": [
{ "kind": "webhook", "url": "https://your.app/yieldbase" },
{ "kind": "telegram", "chatId": "123456" }
],
"label": "main vault"
}'
FAQ
How fast are alerts?
Default tick is 60s (Starter) or 30s (Pro). End-to-end webhook latency is sub-2s after detection.
What if you go down?
Dual-region monitoring with consensus alerting is on the roadmap. Today we run single-region — being honest about it.
Do you custody my funds?
No. We only need your public address. Yieldbase is read-only on-chain.