GET
/
api
/
v1
/
instruments
/
{instrument}
/
funding
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/instruments/{instrument}/funding
{
  "instrument_id": "14thr7ft-1-0",
  "funding_rate": 0.1543,
  "mark_price": 20000.63,
  "event_time": "2023-03-16T23:59:53.000Z"
}
InstrumentsService instrumentsService = IntxServiceFactory.createInstrumentsService(client);
GetHistoricalFundingRatesRequest request = new GetHistoricalFundingRatesRequest.Builder()
    .instrumentId("BTC-PERP")
    .build();
GetHistoricalFundingRatesResponse response = instrumentsService.getHistoricalFundingRates(request);

For more information, please visit the INTX Java SDK.

Path Parameters

instrument
string
required

Identifies the instrument by name (e.g., BTC-PERP), UUID (e.g., ce55a827-f04a-45c0-9d9b-8bbdb9b48065), or instrument ID (e.g., 7149252043835013)

Query Parameters

result_limit
integer

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

Example:

30

result_offset
integer

The number of results from the beginning to skip past

Example:

50

Response

200
application/json

Funding Rates list

The response is of type object.