Skip to main content

Get all-time trading volume

GET
/ver1/accounts/:account_id/volume/total
Permission: ACCOUNTS_READ
Security: SIGNED

Returns all-time trading volume for the specified account in BTC and USD.


Path Parameters

account_idintegerrequired

Unique 3Commas ID of this exchange account entity.

Response Parameters

volume_btcstring

Total trading volume for the account since creation, in BTC.

volume_usdstring

Total trading volume for the account since creation, in USD.

Example Request

GET /ver1/accounts/123456/volume/total

Example Response

{
"volume_btc": "156.8",
"volume_usd": "7840000.00"
}