Skip to main content

Funding Account Transaction History

Return transaction log in Funding Account. This endpoint supports filtering by transaction type and time range.

HTTP Request

GET /v5/asset/fundinghistory

Request Parameters

ParameterRequiredTypeComments
createTimeFromfalsestringStart timestamp (seconds). Must be used together with createTimeTo. The interval between createTimeFrom and createTimeTo cannot exceed 7 days. If neither is provided, defaults to the last 7 days
createTimeTofalsestringEnd timestamp (seconds). Must be used together with createTimeFrom. The interval between createTimeFrom and createTimeTo cannot exceed 7 days. If neither is provided, defaults to the last 7 days
limitfalsestringLimit for data size per page. [1, 100]. Default: 10
cursorfalsestringCursor, used for pagination

Response Parameters

ParameterTypeComments
nextPageCursorstringCursor for next page
listarrayTransaction list
> memberIdstringMember ID
> currencystringCoin symbol
> ioDirectionstringDirection. I: In, O: Out
> txnAmtstringTransaction amount
> afterAmtstringBalance after transaction
> createTimestringCreate time (Unix seconds)
> showBusiTypestringBusiness type (localized key)
> showBusiTypeEnstringBusiness type in English
> descriptionstringDescription (localized key)
> descriptionEnstringDescription in English

Request Example

GET /v5/asset/fundinghistory?limit=1&cursor=MTM3MTU3OTk= HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: xxxxxxxxxxxxxxxxxx
X-BAPI-TIMESTAMP: 1739433600000
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"nextPageCursor": "MTM3MTU3OTk=",
"list": [
{
"memberId": "290118",
"currency": "BTC",
"ioDirection": "I",
"txnAmt": "0.00003561",
"afterAmt": "7.5547230662687035",
"createTime": "1772669763",
"showBusiType": "fundingAccountRecordEarn",
"showBusiTypeEn": "Earn",
"description": "fundingAccountRecordFlexSavingInterestDistribution",
"descriptionEn": "Easy Earn | Flexible Interest Distribution"
}
]
},
"retExtInfo": {},
"time": 1772699449372
}