Skip to main content

Get monthly trading volume

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

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


Path Parameters

account_idintegerrequired

Unique 3Commas ID of this exchange account entity.

Query Parameters

monthstring

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

Response Parameters

utc_monthstring

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

volume_btcstring

Total trading volume for the account in the specified month, in BTC.

volume_usdstring

Total trading volume for the account in the specified month, in USD.

Example Request

GET /ver1/accounts/123456/volume/monthly?month=2025-03

Example Response

{
"utc_month": "2025-03",
"volume_btc": "15.7",
"volume_usd": "785000.00"
}