API · /bybit-api

Bybit API

healthy 4,039 Subscribers

Live derivatives and spot market data from Bybit, one of the largest crypto-derivatives exchanges, straight from its public v5 API. Built for perpetual swaps: the ticker returns a contract's last, mark and index price together, the 24-hour change, high, low, volume and turnover, the live open interest in contracts and in USD, and the current funding rate with the next funding time — a whole perp in one call. The funding endpoint returns the historical funding-rate series, the recurring payments that anchor a perp to spot. The openinterest endpoint returns the open-interest time series, the best gauge of leverage building or unwinding. The kline endpoint returns OHLCV candles at any interval. Linear (USDT) perps, inverse (coin) perps and spot are all reachable via the category parameter. Live, no key, nothing stored. Distinct from Coinbase, Bitstamp, OKX, Gate.io, Bitfinex and Gemini venue APIs and from aggregated derivatives feeds — this is Bybit's own ticker, funding history, open interest and candles. Perfect for trading, charting, derivatives-analytics and risk apps.

api.oanor.com/bybit-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/bybit-api/openapi.json
/api/bybit-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
281 ms
Server probes · 24h
Subscribers
4,039
active
Total calls
16
last 7 days
status Full status page → · 12 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 7,000 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 7k calls/month
  • 2 req/sec
  • Ticker + funding + open interest + kline
  • No credit card
Sign in to subscribe

Starter

€13.00 /month

  • 150,000 calls / month
  • 6 requests / second
  • Hard cap (429 above quota, no overage)
  • 150k calls/month
  • 6 req/sec
  • Email support
Sign in to subscribe

Pro

€37.00 /month

  • 900,000 calls / month
  • 18 requests / second
  • Hard cap (429 above quota, no overage)
  • 900k calls/month
  • 18 req/sec
  • Priority support
Sign in to subscribe

Business

€79.00 /month

  • 4,900,000 calls / month
  • 45 requests / second
  • Hard cap (429 above quota, no overage)
  • 4.9M calls/month
  • 45 req/sec
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Crypto Basis API

Live crypto spot-versus-perpetual basis and premium as an API, served from the Bybit v5 feed. The basis is the gap between a coin's perpetual-futures price and its spot price: when the perp trades above spot the market is in contango (leveraged longs are paying up), when below it is in backwardation. For any coin this returns the spot price, the perp last, mark and index price, the basis in absolute and percentage terms, the mark-to-index premium, the market structure, and the funding rate — per-8-hour and annualised — that arbitrages the basis away. Get a coin's basis, or scan the majors ranked by basis. The cash-and-carry and funding-arbitrage signal layer for trading and dashboard apps. Live, no key, no cache. Distinct from funding-rate, open-interest and price APIs — this is the spot-perp basis.

api.oanor.com/cryptobasis-api

Crypto Open Interest API

Live open-interest history and trend for crypto perpetual futures, served from the Bybit v5 feed. Open interest is the total value of outstanding contracts — its trend, rising or falling alongside price, is the signal traders use to confirm a move or spot a squeeze. For any USDT perpetual this returns the latest open interest in contracts and in USD, how it has changed over your chosen window, the rising / falling / flat trend, and the full time-series across 5m, 15m, 30m, 1h, 4h and 1d buckets. Look a contract up by symbol (BTCUSDT) or base coin (BTC), pull its open-interest history, or list every tradable perpetual. Live data, no cache. Distinct from a funding-rate API (which carries the rate snapshot) and from price / ticker APIs — this is the open-interest time-series and trend layer.

api.oanor.com/openinterest-api

Long/Short Ratio API

Live crypto long/short trader-positioning sentiment as an API, streamed from the Bybit v5 public account-ratio feed. For any USDT perpetual futures contract it returns the share of accounts positioned long versus short (buy/sell ratio) and the derived long/short ratio — either the latest reading or a full time-series across 5m, 15m, 30m, 1h, 4h and 1d buckets. The crowd-positioning signal traders use to spot one-sided, over-leveraged markets. Look up by symbol or base coin, pull history, or list tradable symbols. Live, no key. Distinct from funding-rate, price and open-interest APIs — this is the account long/short sentiment.

api.oanor.com/longshortratio-api

Funding Rates API

Live crypto perpetual funding rates and derivatives data as an API, streamed from the Bybit v5 public market feed. For every USDT perpetual futures contract: its symbol, last / mark / index price, the current funding rate (per interval, plus percentage and annualised), the next funding time, open interest, 24-hour volume and turnover, and 24-hour price change. Look a contract up by symbol or base coin, rank contracts by funding, open interest, turnover or price move — a ready-made signal for crowded longs and shorts — search, or list them all. Built for trading, quant, dashboard and signal apps. Distinct from spot-price and on-chain data.

api.oanor.com/fundingrates-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Bybit API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Bybit API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Bybit API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Bybit API cost?
Bybit API has a free tier with 100 calls / month. Paid plans start at €13.00 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Bybit API GDPR-compliant?
All requests to Bybit API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/bybit-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/bybit-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/bybit-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/bybit-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.