get https://open-api-v4.coinglass.com/api/borrow-interest-rate/history
This endpoint provides daily borrowing interest rates for cryptocurrencies.
This endpoint is available on the following API plans:
| Plans | Hobbyist | Startup | Standard | Professional | Enterprise | 
|---|---|---|---|---|---|
| Available | ✅ | ✅ | ✅ | ✅ | ✅ | 
Response Data
{
  "code": "0",                             
  "msg": "success",                         
  "data": [
    {
      "time": 1741636800,                  // Timestamp (in seconds)
      "interest_rate": 0.002989            // daily Interest rate
    },
    {
      "time": 1741640400,                  // Timestamp (in seconds)
      "interest_rate": 0.002989            // daily Interest rate
    }
  ]
}
