Discover/Orion Terminal API
live

Orion Terminal APIscreener.orionterminal.com

Access real-time open interest, funding rates, volume, and price data for crypto perpetual futures on Binance and Hyperliquid across 7 timeframes.

Endpoint health
verified 2d ago
get_screener_data
get_symbol_data
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Orion Terminal API?

The Orion Terminal Screener API exposes real-time perpetual futures data across Binance and Hyperliquid through 2 endpoints, returning per-symbol fields including open interest in USD, funding rate, volume deltas, and price changes across seven timeframes (5m through 1d). The get_screener_data endpoint supports filtering by symbol, sorting by metrics like oi or funding_rate, and limiting result count, making it suitable for programmatic screeners and alerting systems.

Try it
Max number of results to return. 0 returns all results.
Filter by symbol(s), comma-separated (e.g. 'BTC,ETH,SOL'). Matches base asset or full symbol name. Omitting returns all symbols.
Sort results by field. Omitting returns unsorted results.
Exchange to query.
Sort order.
api.parse.bot/scraper/f11b55ec-7756-4afc-abb1-67bdedf60515/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/f11b55ec-7756-4afc-abb1-67bdedf60515/get_screener_data?limit=5&symbol=BTC&sort_by=oi&exchange=binance&sort_order=desc' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace screener-orionterminal-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Orion Screener SDK — crypto futures OI, volume, and funding data."""
from parse_apis.orion_screener___crypto_futures_oi_volume_api import (
    OrionScreener, Sort, Exchange, Order, SymbolNotFound
)

client = OrionScreener()

# List top tickers by open interest on Binance
for ticker in client.tickers.list(sort_by=Sort.OI, sort_order=Order.DESC, exchange=Exchange.BINANCE, limit=5):
    print(ticker.symbol, ticker.price, ticker.open_interest_usd, ticker.funding_rate)

# Search for a specific symbol and inspect its timeframe data
btc = client.tickers.search(symbol="BTC", limit=1).first()
if btc:
    for tf_name, tf in btc.timeframes.items():
        print(tf_name, tf.oi_change, tf.volume, tf.btc_correlation)

# Handle a symbol that doesn't exist on the exchange
try:
    result = client.tickers.search(symbol="ZZZZZ", limit=1).first()
except SymbolNotFound as exc:
    print(f"Symbol not found: {exc.symbol}")

print("exercised: tickers.list / tickers.search / timeframe access / SymbolNotFound handling")
All endpoints · 2 totalmissing one? ·

List all crypto perpetual futures tickers with open interest, volume, price, and funding rate data. Supports filtering by symbol, sorting by various metrics, and limiting result count. Returns all symbols on the exchange when no filter is applied. Each ticker includes timeframe breakdowns (5m through 1d) with OI changes, volume, volatility, and BTC correlation.

Input
ParamTypeDescription
limitintegerMax number of results to return. 0 returns all results.
symbolstringFilter by symbol(s), comma-separated (e.g. 'BTC,ETH,SOL'). Matches base asset or full symbol name. Omitting returns all symbols.
sort_bystringSort results by field. Omitting returns unsorted results.
exchangestringExchange to query.
sort_orderstringSort order.
Response
{
  "type": "object",
  "fields": {
    "tickers": "array of ticker objects each containing symbol, base_asset, price, open_interest_usd, funding_rate, and timeframes with OI/volume/price metrics",
    "exchange": "string, the exchange queried",
    "last_update": "integer, unix timestamp in milliseconds of last data update",
    "symbol_count": "integer, number of tickers returned",
    "total_symbols": "integer, total symbols available on the exchange"
  }
}

About the Orion Terminal API

What the API Returns

Both endpoints return an array of ticker objects containing symbol, base_asset, price, open_interest_usd, funding_rate, and timeframe-level breakdowns from tf5m through tf1d. Each timeframe object includes OI changes, volume deltas, volatility, and BTC correlation for that period. The top-level response also includes exchange, last_update (Unix timestamp in milliseconds), symbol_count, and total_symbols so you know how many contracts are available on the queried exchange.

Filtering and Sorting with get_screener_data

The get_screener_data endpoint accepts four optional parameters. symbol takes a comma-separated list of base assets or full symbol names (e.g. BTC,ETH,SOL) to narrow results. sort_by accepts values including oi, price, funding_rate, volume_5m, volume_1h, and volume_1d. Pair it with sort_order (asc or desc) to rank contracts by any of those metrics. limit controls how many tickers come back; passing 0 returns the full set. The exchange parameter switches between binance and hyperliquid (alias hl).

Focused Lookups with get_symbol_data

get_symbol_data requires a symbol parameter and returns full timeframe detail for each matching ticker. Unlike the screener endpoint, it is optimized for single or small-batch lookups and always returns the complete set of timeframe fields without needing to configure sorting or pagination. The response includes symbols_found so you can confirm whether a requested symbol is listed on the chosen exchange.

Coverage and Freshness

Data covers perpetual futures only — no spot markets, options, or quarterly contracts. The last_update timestamp on every response lets you determine data age in milliseconds. Coverage is limited to Binance and Hyperliquid; the exchange field in each response confirms which exchange the data came from.

Reliability & maintenanceVerified

The Orion Terminal API is a managed, monitored endpoint for screener.orionterminal.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when screener.orionterminal.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official screener.orionterminal.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Rank all Binance perpetual futures by open interest to identify the most actively held contracts at a given moment.
  • Screen for contracts with extreme funding rates on Hyperliquid to find potential funding arbitrage setups.
  • Monitor OI changes across multiple timeframes (5m, 1h, 4h) to detect unusual position buildup in real time.
  • Filter and sort by volume_1h to surface contracts with abnormal short-term trading activity relative to their baseline.
  • Build a BTC correlation heatmap using per-symbol correlation fields to group assets by market-beta regime.
  • Set up automated alerts when a specific symbol's funding rate crosses a threshold using get_symbol_data on a polling schedule.
  • Compare OI and volume deltas across Binance and Hyperliquid for the same base asset to spot cross-exchange divergences.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Orion Terminal provide an official developer API?+
Orion Terminal does not publish a documented public developer API. The screener data at screener.orionterminal.com is intended for use through their web interface; this Parse API provides structured programmatic access to the same data.
What does the `get_screener_data` endpoint return compared to `get_symbol_data`?+
get_screener_data returns the full list of perpetual futures on the selected exchange and accepts sort_by, sort_order, limit, and symbol filter parameters. get_symbol_data requires at least one symbol, skips sorting and pagination options, and always returns the complete set of timeframe fields for each matching ticker. Use get_screener_data for market-wide scanning and get_symbol_data for targeted lookups.
How fresh is the data returned by these endpoints?+
Every response includes a last_update field expressed as a Unix timestamp in milliseconds. You can diff that value against the current time to determine data age. The API does not expose a guaranteed update interval, so checking last_update per response is the reliable way to confirm freshness.
Does the API cover spot markets, options, or exchanges beyond Binance and Hyperliquid?+
Not currently. The API covers perpetual futures on Binance and Hyperliquid only. Spot market data, options chains, and quarterly futures contracts are not included, nor are other exchanges such as OKX or Bybit. You can fork this API on Parse and revise it to add endpoints targeting those additional markets.
Can I retrieve historical OI or volume time series through these endpoints?+
Not currently. Both endpoints return the current snapshot of market data with per-timeframe change metrics (e.g. OI change over the last 1h or 4h), but they do not return historical candlestick-style series. You can fork this API on Parse and revise it to add a historical data endpoint if the underlying source exposes that data.
Page content last updated . Spec covers 2 endpoints from screener.orionterminal.com.
Related APIs in Crypto Web3See all →
cfbenchmarks.com API
Monitor real-time cryptocurrency prices and market cap data—both free float and full valuations—to screen and compare digital assets. Access comprehensive pricing information across the crypto market to inform your investment decisions and portfolio analysis.
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.
optioncharts.io API
Access real-time options trading data including full option chains, strike prices, expiration dates, and market flow analytics for any ticker symbol. Analyze trending options, get detailed ticker overviews, and monitor the most active options to make informed trading decisions.
polygon.io API
Access real-time and historical market data for stocks, cryptocurrencies, forex, and commodities—including price aggregates, ticker details, and financial statements—all from a single platform. Get the latest market news, check trading status across exchanges, and retrieve comprehensive ticker information to power your investment analysis and trading decisions.
barchart.com API
Monitor live stock quotes and commodity prices, analyze options chains with gamma exposure data, and access historical market time series to track top-performing stocks. Use real-time and historical data to make informed trading and investment decisions across equities and commodities.
app.hyperliquid.xyz API
Access real-time leaderboard rankings, market data for perpetual and spot markets, order books, and detailed trader analytics on the Hyperliquid decentralized exchange. Monitor top traders' open positions and identify delta-neutral trading strategies.
chartink.com API
Access real-time and historical stock market data from Indian exchanges (NSE/BSE) to analyze fundamentals, technical indicators, and OHLCV metrics, plus run custom stock screeners to find investment opportunities. Search for specific stocks and browse all listed symbols to build data-driven trading strategies and investment research.
databento.com API
Access historical market data for US equities, futures, and options through a simple authentication system, allowing you to retrieve timeseries data, look up instruments, and explore available datasets. Resolve trading symbols and discover data schemas to power your quantitative analysis and backtesting workflows.