Autonomous liquidation level monitoring for AI agents and traders. Pay per signal. No subscriptions.
Real-time liquidation monitoring with simple REST API access
Real-time monitoring of BTC/SOL liquidation levels with max pain analysis
Simple HTTP endpoints for programmatic access. Pay only for signals you use.
Built for autonomous trading agents. JSON responses, webhook support, and API key auth.
API key authentication with rate limiting. No registration required for SOL payments.
Currently tracking BTC and SOL liquidation levels with support for additional assets
Customizable notifications via Telegram, Discord, Email, and Webhook integrations
Pay per signal. No subscriptions. No hidden fees.
~$0.15 per signal
~$0.075 per signal (100+ signals)
Tailored for institutions
Solana Address
GZ2XQSbvJfAshoV68e66JZgdNHoM8VcXvYsgR3U6hwBF
Send SOL to this address with your API key in the memo field
Simple, powerful REST API for programmatic access
All API requests require an API key in the header:
curl -H "X-API-Key: your_api_key_here" \
https://maxtradingsignals.com/api/v1/signals
Contact us to obtain your API key after payment verification.
Retrieve the latest trading signals:
{
"timestamp": "2026-06-06T16:27:00Z",
"signals": [
{
"id": "sig_abc123",
"asset": "BTC",
"type": "LONG",
"entry": 95234.50,
"target": 96100.00,
"stop_loss": 94800.00,
"confidence": 0.92,
"liquidation_level": 94500.00,
"created_at": "2026-06-06T16:25:30Z"
}
]
}
Fetch current max pain liquidation levels:
{
"asset": "SOL",
"timestamp": "2026-06-06T16:27:00Z",
"levels": {
"support": [124.50, 122.00, 119.75],
"resistance": [128.00, 130.50, 133.00],
"max_pain": 125.80
}
}
Receive real-time signals via webhook POST requests:
POST https://your-server.com/webhook
Content-Type: application/json
{
"event": "signal.created",
"data": {
"id": "sig_xyz789",
"asset": "SOL",
"type": "SHORT",
"entry": 126.45,
"confidence": 0.88
}
}
Configure webhook URL in your account settings.