Documentation

Understand Optiom's data access boundaries.

Bounded Web Lite projections, internal Desktop data transport, and a separate authenticated and licensed Developer API program.

Search the docs — previews, methodology, access…

Schemas & data dictionary

A field dictionary for candidate licensed datasets. It is not the public Web Lite response contract or an availability promise.

Browse schemas

Browse by topic

Quickstart

Your first bounded request

Read the preview.v1 truth envelope first. Until source rights and pipeline timestamps are qualified, HTTP 503 with state unavailable is the expected fail-closed response.

PythonJavaScriptCSV
import requests

res = requests.get(
    "https://www.getoptiom.com/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?

Review the Web Lite projection contract or contact the team to discuss separately licensed developer access.