GET
/
volumes
/
exchange
Exchange Volume USD
curl --request GET \
  --url https://api.amberdata.com/markets/spot/analytics/volumes/exchange \
  --header 'x-api-key: <api-key>'
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "data": [
      {
        "exchange": "binance",
        "timestamp": "2025-06-04 00:00:00 000",
        "totalVolumeUSD": 67022419665.659546,
        "totalVolumeUSDBillions": 67.02241966565954
      },
      {
        "exchange": "binanceus",
        "timestamp": "2025-06-04 00:00:00 000",
        "totalVolumeUSD": 10036190.677076299,
        "totalVolumeUSDBillions": 0.010036190677076298
      },
      {
        "exchange": "bitfinex",
        "timestamp": "2025-06-04 00:00:00 000",
        "totalVolumeUSD": 398537591611.8082,
        "totalVolumeUSDBillions": 398.53759161180824
      },
      {
        "exchange": "gdax",
        "timestamp": "2025-06-04 00:00:00 000",
        "totalVolumeUSD": 5434906189.482691,
        "totalVolumeUSDBillions": 5.434906189482691
      }
    ],
    "metadata": {
      "api-version": "2023-09-30"
    }
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

exchange
string
default:""

[Optional] The exchange for which to retrieve USD volume. [Examples] gdax | okex | binance | binanceus

startDate
string
default:2025-06-01
required

[Required] Payload only includes data after this date (inclusive). [Formats] seconds | milliseconds | iso8601 [Examples] 1578531600 | 1578531600000 | 2025-02-27

endDate
string
default:2025-06-05
required

[Required] Payload only includes data up to this date. [Formats] seconds | milliseconds | iso8601 [Examples] 1578531600 | 1578531600000 | 2025-02-28

timeInterval
string
default:day

[Optional] Time interval of data frequency for the selected date range. [Examples] minute | hour | day

timeFormat
string
default:hr

[Optional] Time format of the timestamps in the return payload. [Defaults] milliseconds | ms* | iso | iso8601 | hr | human_readable

orderSizeCategoryUsd
string
default:ALL
required

[Optional] Users can specify to return all aggregated trades, or trades of a specific size threshold. (0-1k, 1k-10k, 10k-100k, 100k+, ALL) by passing in the lower value of the range 0 | 1k | 10k | 100k | All

Response

200 - application/json

The response is of type any.