Skip to main content
GET
/
api
/
public
/
v1
/
live
/
oi-history
/
{coin}
Get API public v1 live oi history by coin
curl --request GET \
  --url https://api.coinversa.ai/api/public/v1/live/oi-history/{coin} \
  --header 'X-API-Key: <api-key>'
{
  "history": [
    {
      "coin": "<string>",
      "openInterest": 123,
      "timestamp": "<unknown>",
      "markPx": "<unknown>"
    }
  ],
  "$schema": "<string>",
  "latest": {
    "coin": "<string>",
    "openInterest": 123,
    "timestamp": "<unknown>",
    "markPx": "<unknown>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.coinversa.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

coin
string
required

Query Parameters

hours
integer<int32>
default:168

Response

OK

history
object[] | null
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/OIHistoryBody.json"

latest
object