Coinbase International Exchange API
cURL
curl --request GET \ --url https://api.international.coinbase.com/api/v1/instruments/volumes/daily
{ "pagination": { "result_limit": 30, "result_offset": 50 }, "results": [ { "timestamp": "2024-04-23T00:00:00Z", "instruments": [ { "symbol": "BTC-PERP", "volume": "2180.5428999997785", "notional": "145087054.13650635" } ], "totals": { "total_instruments_volume": "255682824.87039998", "total_instruments_notional": "2180.5428999997785", "total_exchange_volume": "255682824.87039998", "total_exchange_notional": "2180.5428999997785" } } ] }
Retrieves the trading volumes for each instrument separated by day.
InstrumentsService instrumentsService = IntxServiceFactory.createInstrumentsService(client); GetDailyTradingVolumesRequest request = new GetDailyTradingVolumesRequest.Builder() .instruments("BTC-PERP") .build(); GetDailyTradingVolumesResponse response = instrumentsService.getDailyTradingVolumes(request);
Show child attributes
Was this page helpful?