Skip to main content
GET
/
api
/
v1
/
instruments
/
{instrument}
/
funding
Get historical funding rates
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"
}
  • Java
  • .NET
  • Go
  • Python
  • TS/JS
  • CLI
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

Query Parameters

result_limit
integer
Example:
result_offset
integer
Example:

Response

instrument_id
string
Example:
funding_rate
string
Example:
mark_price
string
Example:
event_time
string<date-time>
Example: