Skip to main content
GET
/
api
/
v1
/
instruments
/
volumes
/
daily
Get daily trading volumes
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/instruments/volumes/daily
"<unknown>"
  • Java
  • .NET
  • Python
  • TS/JS
InstrumentsService instrumentsService = IntxServiceFactory.createInstrumentsService(client);
GetDailyTradingVolumesRequest request = new GetDailyTradingVolumesRequest.Builder()
    .instruments("BTC-PERP")
    .build();
GetDailyTradingVolumesResponse response = instrumentsService.getDailyTradingVolumes(request);
For more information, please visit the INTX Java SDK.

Query Parameters

instruments
string
required

Identifies the instruments by name in a comma separated list (e.g., BTC-PERP,ETH-PERP)

result_limit
integer

The number of results to return (defaults to 60 with a max supported value of 100)

Example:

30

result_offset
integer

The number of results from the beginning to skip past

Example:

5

time_from
string

The first date to include data from in ISO 8601 timestamp format (e.g. 2024-03-01T00:00:00Z)

show_other
boolean

Return an OTHER bucket in the instrument list containing the volume of all instruments filtered out by the instruments query parameter

Response

Instrument list