Get daily trading volume
GET
/ver1/accounts/:account_id/volume/dailyReturns 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
Example Request
GET /ver1/accounts/123456/volume/daily?date=2025-03-28
Example Response
- 200 OK
- 403 Forbidden
- 404 Not Found
{
"utc_date": "2025-03-28",
"volume_btc": "0.5",
"volume_usd": "25000.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 date"
}