GET

/api/v1/exchanges/:id

Izin: EXCHANGES_READKeamanan: SIGNED

Mengambil informasi konfigurasi dan status untuk akun bursa tertentu yang terhubung menggunakan ID UUID uniknya.

Pro Tip: Use /api/v1/exchanges to retrieve the complete list of all active connected exchange accounts.

Parameter Path

idUUID string required

ID UUID unik akun bursa terhubung di Quentrade (misal: '7fa84b80-77a8-4e89-a292-123456789abc').

Contoh Permintaan

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc

Parameter Respons

Account Entity Structure

Jika berhasil, respons mengembalikan objek model Exchange Connection lengkap yang berisi kode bursa, label nama, tipe koneksi, izin perdagangan, dan status verifikasi akun.

View Account Entity Spec

Contoh Respons

account_info_200.json
200 OK
{
  "id": "7fa84b80-77a8-4e89-a292-123456789abc",
  "exchange": "binance",
  "label": "My Main Binance Account",
  "connection_type": "spot",
  "can_trade": true,
  "can_withdraw": false,
  "is_active": true,
  "is_testnet": false,
  "last_verified": "2026-08-20T23:25:00.000Z",
  "last_error": null,
  "created_at": "2026-08-20T23:25:00.000Z"
}