Skip to main content

Get daily trading volume

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

Returns daily trading volume for the specified account in BTC and USD.


Path Parameters

account_idintegerrequired

Unique 3Commas ID of this exchange account entity.

Query Parameters

datestring

Optional. The UTC date for which volume should be returned. If omitted, returns current day's volume.

Response Parameters

utc_datestring

The date for which the trading volume is returned (UTC).

volume_btcstring

Total trading volume for the account on this day, in BTC.

volume_usdstring

Total trading volume for the account on this day, in USD.

Example Request

GET /ver1/accounts/123456/volume/daily?date=2025-03-28

Example Response

{
"utc_date": "2025-03-28",
"volume_btc": "0.5",
"volume_usd": "25000.00"
}