Get monthly trading volume
GET
/ver1/accounts/:account_id/volume/monthlyReturns 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
Example Request
GET /ver1/accounts/123456/volume/monthly?month=2025-03
Example Response
- 200 OK
- 403 Forbidden
- 404 Not Found
{
"utc_month": "2025-03",
"volume_btc": "15.7",
"volume_usd": "785000.00"
}
{
"error": "Forbidden",
"error_description": "Api key not authorized for this action"
}
{
"error": "Volume data not found",
"error_description": "No data available for the requested month"
}