Real-time crypto alpha alerts — whale movements, new token launches, and trending signals. Three endpoints for different alert types.
Base URL:
https://pylon-alpha-alerts-api.fly.dev
| Endpoint | Description |
|---|---|
/alerts/latest | Latest alerts across all categories |
/alerts/whales | Whale wallet movements and large transactions |
/alerts/launches | New token launches and liquidity events |
All endpoints are GET requests with no required parameters.
Returns a JSON array of alerts (200 OK).
[
{
"id": "alert_001",
"type": "whale",
"title": "Large ETH transfer detected",
"description": "500 ETH moved from whale wallet to Coinbase",
"timestamp": "2025-01-15T12:30:00Z",
"severity": "high"
},
{
"id": "alert_002",
"type": "launch",
"title": "New token: EXAMPLE",
"description": "Liquidity added on Uniswap V3",
"timestamp": "2025-01-15T12:25:00Z",
"severity": "medium"
}
]| Status | Description |
|---|---|
200 | Array of alerts returned as JSON |
402 | Payment required — x402 challenge returned |
$0.01 USDC per request — paid via x402 on Base Sepolia. No API key. No subscription. Pay per call.
# Get latest alerts
curl "https://pylon-alpha-alerts-api.fly.dev/alerts/latest"
# Get whale movements
curl "https://pylon-alpha-alerts-api.fly.dev/alerts/whales"
# Get new launches
curl "https://pylon-alpha-alerts-api.fly.dev/alerts/launches"
To use Pylon APIs, you need an x402-compatible client with a funded wallet on Base Sepolia. Here's the quick setup:
The x402 flow: your first request returns 402 Payment Required with payment details in headers. The x402 client signs a USDC payment, then retries with payment proof attached. All automatic, all in milliseconds.