Crypto Breakout Early Warning API
Skor breakout 0-100 per aset crypto (jarak resistance, spike volume, trend, zona RSI) — mode tunggal atau scan ranking.
Base Information
- BASE_URL_API:
https://api.maelyn.eu/api - Path / Endpoint:
/financial/crypto/breakout-early-warning - Method:
GET - Credit Usage:
8
Authentication
x-maelyn-auth: YOUR_API_KEY
Description
Dua mode operasi: analisis mendalam satu aset (?symbol=BTC) atau ranking breakout seluruh top aset (?mode=scan). Level: STRONG_BREAKOUT (≥80), NEAR_BREAKOUT (≥60), WATCH (≥40), NO_BREAKOUT.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | No* | Simbol aset, contoh BTC. *Wajib jika tanpa mode. |
mode | string | No* | Isi scan untuk batch scan. *Wajib jika tanpa symbol. |
Example Usage
1. Analisis tunggal
GET /financial/crypto/breakout-early-warning?symbol=BTC
2. Batch scan
GET /financial/crypto/breakout-early-warning?mode=scan
Success Response (tunggal)
{
"success": true,
"data": {
"symbol": "BTCUSDT",
"score": 72,
"level": "NEAR_BREAKOUT",
"lastPrice": 84074.01,
"resistance": 85200.0,
"support": 81500.0,
"volMultiple": 1.8,
"distToResistancePct": 1.34,
"trendAligned": true,
"isBreakout": false,
"disclaimer": "Skor breakout bersifat statistik, bukan saran investasi."
}
}
Success Response (scan)
{
"success": true,
"data": {
"scanned_count": 15,
"hot_count": 3,
"ranking": [
{
"symbol": "SOLUSDT",
"score": 85,
"level": "STRONG_BREAKOUT",
"vol_multiple": 2.4,
"is_breakout": true,
"dist_to_resistance_pct": 0.4,
"trend_aligned": true,
"last_price": 172.5
}
],
"disclaimer": "Skor breakout bersifat statistik, bukan saran investasi."
}
}