GET

/api/v1/bots/dca/

Permission: BOTS_READSecurity: BEARER_JWT

Retrieves comprehensive information about a specific DCA Bot using its unique UUID, including active order ladders, target profits, stop loss risk limits, and lifetime profit statistics.

See DCA Bot Entity for full attribute definitions
DCA Bot Entity

Path Parameters

iduuid required

Unique UUID identifier of the DCA Bot entity (e.g. 7c9e6679-7425-40de-944b-e07fc1f90ae7).

dev_get_dca_bot.query_params.title

0

Example Request

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

Example Responses

Returns the complete DCA Bot model entity with current live execution metrics.

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"
}