Skip to main content

Transfer Record Query

queryTransfers

Version

Available in v2.2.9 and later.

Parameters

FieldTypeDescription
accountAccountAccount
startDatestring (optional)Query start date (YYYYMMDD). When omitted, the server default range is used
endDatestring (optional)Query end date (YYYYMMDD)
stockNostring (optional)Stock symbol. When omitted, all symbols are queried

Result

FieldTypeDescription
isSuccessboolWhether the request succeeded
dataList[TransferRecord]List of transfer records; an empty list when no records exist
messagestring ? (optional)Error message when isSuccess is false

Transfer record: TransferRecord fields

Return type : Object

FieldTypeDescription
seqNostringSequence number
datestringApplication date
timestringApplication time
stockNostringStock symbol
marketMarketMarket: Taiex TWSE, Taisdaq TPEx, Taiemg Emerging
quantitynumberTransferred shares
targetBranchNostringReceiving branch code
targetAccountstringReceiving account
statusnumberStatus: 10 success; 90 failure

Request example

sdk.stock.queryTransfers(account, "20260701", "20260722")

Response example

{
isSuccess: true,
data: [
{
date: "2026/07/28", // Application date (string)
time: "10:53:48.340", // Application time (string)
seqNo: "418181", // Sequence number (string)
stockNo: "006205", // Stock symbol (string)
market: Taiex, // Market (Market)
quantity: 2000, // transferred shares (int)
targetBranchNo: "960C", // Receiving branch code (string)
targetAccount: "7654321", // Receiving account (string)
status: 10, // status (int)
}
]
}