GET

/api/v1/exchanges/:id/volume_total

Permission: EXCHANGES_READSecurity: SIGNED

Returns all-time trading volume statistics for the specified exchange account since creation in BTC and USD.

Path Parameters

idUUID string / summary required

Unique Quentrade UUID of this exchange account entity (or 'summary' for aggregated portfolio volume).

Example Request

GETGET /api/v1/exchanges/7fa84b80-77a8-4e89-a292-123456789abc/volume_total

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 Responses

volume_total_200.json
200 OK
{
  "volume_btc": "156.8",
  "volume_usd": "7840000.00"
}