Documentation

Everything you need to build on Optiom.

Guides, API reference, schemas, and beta integration notes for the graphs terminal and Optiom Data.

Search the docs — endpoints, guides, datasets…

Schemas & data dictionary

Every data format Optiom supports — order book, trades, OHLCV, definitions, statistics — with the full list of fields.

Browse schemas

Browse by topic

Quickstart

Your first request

Use plain HTTP clients today; official SDKs and self-serve API keys come after the beta contract is stable.

PythonJavaScriptCSV
import requests

res = requests.get(
    "https://app.optiom.io/api/tradinghub/funding",
    params={"symbol": "BTCUSDT", "max_rows": 5000},
    timeout=15,
)
res.raise_for_status()

funding = res.json()
print(funding[:3])

Popular guides

Learn by example

All guides & resources

Can't find what you need?

Check the full API reference or reach the team — we answer integration questions fast.