Skip to main content
GET
/
stats
/
api
/
v1
/
open_interest_history
Get Open Interest History
curl --request GET \
  --url https://api.example.com/stats/api/v1/open_interest_history
{
  "value": [
    {
      "symbol": "<string>",
      "amount": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "success": true,
  "timestamp": 123
}

Query Parameters

limit
integer
default:500

The number of rows to return

order
enum<string>
default:asc

The ordering of the results.

Available options:
asc,
desc
symbol
string

The symbol

interval
enum<string>
default:1d

The interval for open interest history.

Available options:
5m,
1h,
1d
since
integer

The earliest time in seconds to fetch rows for. This param cannot be used together with param order = 'desc'

Response

Open Interest History Data

Successful response for the Open Interest History API

value
object[]
required

The value of the response

success
boolean
required

Whether the request was successful

timestamp
number
required

The timestamp of the response

Example:

1673031089

Last modified on April 27, 2026