Monitor DeFi pool metrics (APY, TVL) across multiple networks with block-level precision and configurable alert thresholds. Returns real-time data, change deltas, and triggered alerts. Works with zero parameters (defaults to Base + Compound V3).
No input schema provided. Expect bare JSON payload.
Invoke with curl
curl -s -X POST \
'https://yield-pool-watcher.vercel.app/entrypoints/monitor/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Retrieve historical APY and TVL metrics for a specific pool, with configurable limit. Useful for tracking trends and analyzing pool performance over time. Works with zero parameters (defaults to Compound V3 USDC on Base).
No input schema provided. Expect bare JSON payload.
Invoke with curl
curl -s -X POST \
'https://yield-pool-watcher.vercel.app/entrypoints/get_history/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Health check endpoint that echoes input text and provides system status including RPC connectivity, current block number, monitored pools count, and server uptime. Works with zero parameters (uses default greeting).
No input schema provided. Expect bare JSON payload.
Invoke with curl
curl -s -X POST \
'https://yield-pool-watcher.vercel.app/entrypoints/echo/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'