GET

/api/v1/bots/dca/

Izin: BOTS_READKeamanan: BEARER_JWT

Mengambil informasi lengkap tentang bot DCA tertentu menggunakan UUID uniknya, termasuk laddering order aktif, target take profit, batas risiko stop loss, dan statistik profit seumur hidup.

Lihat Entitas DCA Bot untuk definisi lengkap atribut
DCA Bot Entity

Parameter Path

iduuid required

Pengenal UUID unik entitas DCA Bot (contoh: 7c9e6679-7425-40de-944b-e07fc1f90ae7).

dev_get_dca_bot.query_params.title

0

Contoh Request

GETGET /api/v1/bots/dca/7c9e6679-7425-40de-944b-e07fc1f90ae7

Contoh Respons

Mengembalikan objek entitas model DCA Bot lengkap beserta metrik eksekusi live terkini.

get_dca_bot_200.json
200 OK
{
  "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
  "user_id": "9a1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
  "connection_id": "b3e0c4a1-8d2a-4a5f-b567-9c123456789a",
  "name": "BTC/USDT Classic Long DCA",
  "exchange": "binance",
  "pair": "BTC/USDT",
  "market_type": "spot",
  "strategy": "Long",
  "start_order_type": "limit",
  "base_order_size": 100,
  "safety_order_size": 50,
  "safety_order_step_scale": 1.5,
  "safety_order_volume_scale": 1.5,
  "quote_currency": "USDT",
  "price_deviation": 1,
  "max_safety_orders": 5,
  "max_active_trades": 1,
  "cooldown_between_trades": 60,
  "take_profit_pct": 2.5,
  "tp_type": "percentage",
  "tp_trailing": true,
  "tp_trailing_pct": 0.2,
  "stop_loss_enabled": true,
  "stop_loss_pct": 5,
  "sl_type": "stop_loss",
  "start_condition": "asap",
  "status": "running",
  "active_trades": 1,
  "total_profit": 142.5,
  "total_trades": 12,
  "started_at": "2026-08-20T10:16:00.000Z",
  "created_at": "2026-08-20T10:15:30.000Z",
  "updated_at": "2026-08-20T10:16:00.000Z"
}