AI-Powered Trading Intelligence

Next-Gen Liquidation Trading Signals

Autonomous liquidation level monitoring for AI agents and traders. Pay per signal. No subscriptions.

8
Assets Monitored
15min
Signal Updates
0.001
SOL per Request
24/7
API Availability

Built for AI Agents & Traders

Real-time liquidation monitoring with simple REST API access

📊

Liquidation Tracking

Real-time monitoring of BTC/SOL liquidation levels with max pain analysis

REST API

Simple HTTP endpoints for programmatic access. Pay only for signals you use.

🤖

AI Agent Ready

Built for autonomous trading agents. JSON responses, webhook support, and API key auth.

🔐

Secure & Simple

API key authentication with rate limiting. No registration required for SOL payments.

📈

Multi-Asset

Currently tracking BTC and SOL liquidation levels with support for additional assets

🔔

Smart Alerts

Customizable notifications via Telegram, Discord, Email, and Webhook integrations

Simple, Transparent Pricing

Pay per signal. No subscriptions. No hidden fees.

Pay-Per-Signal

0.001 SOL

~$0.15 per signal

  • ✓ Real-time liquidation signals
  • ✓ BTC + SOL coverage
  • ✓ REST API access
  • ✓ 7-day signal history
  • ✓ Basic support
Get Started

Enterprise

Custom

Tailored for institutions

  • ✓ White-label solution
  • ✓ Dedicated infrastructure
  • ✓ Custom ML models
  • ✓ SLA guarantees
  • ✓ 24/7 premium support
  • ✓ On-premise deployment
Contact Sales

Payment Wallet

Solana Address

GZ2XQSbvJfAshoV68e66JZgdNHoM8VcXvYsgR3U6hwBF

Send SOL to this address with your API key in the memo field

API Documentation

Simple, powerful REST API for programmatic access

Authentication
Get Signals
Liquidation Levels
Webhooks
API Status: Operational

Authentication

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.

Get Latest Signals

Retrieve the latest trading signals:

GET /api/v1/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"
    }
  ]
}

Get Liquidation Levels

Fetch current max pain liquidation levels:

GET /api/v1/levels/:asset
{
  "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
  }
}

Webhook Integration

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.