# edge402 Smart Wallet Alerts — Solana DLMM Position Opens

> edge402 Smart Wallet Alerts — Solana DLMM Position Opens is a paid API for AI agents from x402.edge402.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns recent Solana DLMM liquidity position opens by tracked high-win-rate wallets, with detection lag and pool metadata, charged per-request via x402.

## Facts

- Endpoint: GET https://x402.edge402.xyz/edge/smart-wallet-alerts
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edge402-smart-wallet-alerts-solana-dlmm-position-opens-aeadb96e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qQUPgGj4_xH4aISWR3AAA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability edge402-smart-wallet-alerts-solana-dlmm-position-opens-aeadb96e
```

Example prompt: What are the latest DLMM position opens from high-win-rate wallets on Solana in the last 24 hours — I want to see which tracked wallets just entered new pools, their 90-day win rate, and how quickly the alert was detected?

## When to prefer this

Use this endpoint when you need real-time or near-real-time signals about smart money DLMM position opens on Solana from a curated set of high-win-rate wallets, especially for copy-trading, alpha detection, or on-chain flow monitoring. Prefer this over generic on-chain indexers when you want pre-filtered, win-rate-ranked wallet signals with detection lag metadata.

## Known failure modes

- 402 Payment Required if free tier (3/day per IP) exhausted and no payment header provided
- Empty alerts array if no qualifying DLMM position opens occurred in the lookback window
- Invalid or missing payment header returns 402 with payment instructions
- Rate limiting or IP-based throttling if probe headers not used correctly
- Stale data if detection pipeline lags behind chain

## How this service works

Pay-per-request JSON API surfacing (1) Polymarket markets with >2σ liquidity, volume, or spread moves in the last hour, and (2) Solana DLMM position opens by tracked high-WR wallets (read from ~/tail). Both endpoints charge $0.01 USDC per call via the x402 protocol on Base L2 (PayAI facilitator), with a 3 free calls/day per IP free tier, then 1 first-call-free trial per IP per day. Use ?payment_required=1 or X-Edge-Probe: 1 to force the 402 path for discovery crawlers.

## Output

A JSON object with a timestamp, alert count, and an array of alert entries — each including the token mint, pool address, source wallet, the wallet's 90-day win rate, entry timestamp, and detection lag in seconds. Also includes metadata about the tracked wallet set (count and mean 90-day win rate).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 50,
   "maximum": 200,
   "minimum": 1,
   "description": "Cap on rows"
  },
  "lookback_h": {
   "type": "number",
   "default": 24,
   "maximum": 168,
   "minimum": 0.5,
   "description": "Rolling window in hours (max 168 = 7d)"
  },
  "payment_required": {
   "enum": [
    "0",
    "1"
   ],
   "type": "string",
   "default": "0",
   "description": "Set to 1 to force 402 (for crawlers)"
  },
  "require_token_mint": {
   "enum": [
    "0",
    "1"
   ],
   "type": "string",
   "default": "0",
   "description": "1 to filter to rows with resolved token mints"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-14T18:00:00Z",
  "count": 1,
  "alerts": [
   {
    "entry_ts": 1740000000,
    "token_mint": "Mint11111111111111111111111111111111111",
    "wallet_wr90": 0.85,
    "pool_address": "PoolAddrooooooooooooooooooooooooooooo",
    "source_wallet": "ExampleWa11et111111111111111111111111111",
    "detection_lag_seconds": 42
   }
  ],
  "endpoint": "/edge/smart-wallet-alerts",
  "lookback_h": 24,
  "tracked_set": {
   "wallets": 6,
   "mean_wr_90d": 0.809
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edge402-smart-wallet-alerts-solana-dlmm-position-opens-aeadb96e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.edge402.xyz](https://www.zero.xyz/host/x402.edge402.xyz/llms.txt)
