Skip to main content

Check Cash Flow

Check Cash Flow

Description​

This interface is used to query cash inflow/outflow direction, fund type, amount, occurrence time, related symbol and description.

HTTP Request​

  • GET /api/v3/stockplus/asset/cash-flow
  • Permission: Trade (management, read only)
Request
curl "https://api.bitget.com/api/v3/stockplus/asset/cash-flow?startTime=1650037563&endTime=1650747581" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameters​

ParametersTypeRequiredDescription
startTimeNumberYesStart time, timestamp in seconds, e.g. 1650037563
endTimeNumberYesEnd time, timestamp in seconds, e.g. 1650747581
businessTypeStringNoFund type
Cash - Cash
Stock - Stock
Fund - Fund
symbolStringNoSymbol, e.g. AAPL.US
pageNumberNoStart page. Default:
1. Range:
>=1
sizeNumberNoPage size. Default:
50. Range:
1~10000
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"list": [
{
"transactionFlowName": "Buy AAPL.US",
"direction": "Out",
"businessType": "Unknown",
"balance": -1500.00,
"currency": "USD",
"businessTime": "2024-12-16T10:00:00Z",
"symbol": "AAPL.US",
"description": "Buy 10 shares of AAPL.US"
},
{
"transactionFlowName": "Deposit Cash",
"direction": "In",
"businessType": "Unknown",
"balance": 100000.00,
"currency": "USD",
"businessTime": "2024-12-15T06:10:57Z",
"symbol": null,
"description": ""
}
]
}
}

Response Parameters​

ParametersTypeDescription
listList<Object>Cash flow information
> transactionFlowNameStringFlow name
> directionStringDirection
In - Inflow
Out - Outflow
> businessTypeStringFund type
Cash - Cash
Stock - Stock
Fund - Fund
> balanceNumberAmount
> currencyStringCurrency
> businessTimeStringBusiness time (ISO 8601)
> symbolStringRelated symbol (can be null)
> descriptionStringCash flow description (can be empty string)

How was your Reading Experience with us?

★
★
★
★
â˜