Global Metrics API Endpoints Documentation#
This document provides an overview of all Global Metrics-tagged API endpoints available in the Hyblock Professional API v2.Table of Contents#
Global Bid/Ask Metrics#
Global Bid Ask#
Endpoint: GET /v2/globalBidAskDescription: Returns the aggregated bid and ask volume across all tickers (1000+ assets) on supported exchanges, effectively creating a global orderbook that represents market-wide liquidity.Global Bid Ask Ratio#
Endpoint: GET /v2/globalBidAskRatioDescription: Returns the ratio of aggregated global bid volume to aggregated global ask volume across all tickers (1000+ assets) on supported exchanges. The ratio is normalized to oscillate between -1 and 1, where 0 indicates balanced supply and demand.Summary: Global Bid Ask RatioGlobal Bid Ask Delta#
Endpoint: GET /v2/globalBidAskDeltaDescription: Returns the net global liquidity imbalance by subtracting aggregated global asks from aggregated global bids across all tickers (1000+ assets). Positive values indicate buy-side pressure; negative values indicate sell-side pressure.Summary: Global Bid Ask DeltaGlobal Bid Ask Ratio Increase Decrease#
Endpoint: GET /v2/globalBidAskRatioIncreaseDecreaseDescription: Returns the change in the Global Bid Ask Ratio across all tickers (1000+ assets) compared to the previous candle. Calculated as Ratio(t) − Ratio(t-1), showing whether global buy/sell pressure is strengthening or weakening.Summary: Global Bid Ask Ratio Increase DecreaseGlobal Combined Book#
Endpoint: GET /v2/globalCombinedBookDescription: Returns the combined global orderbook liquidity by summing aggregated bids and aggregated asks across all tickers (1000+ assets) on supported exchanges.Summary: Global Combined Book
Global Orderbook Dynamics#
Global Bids Increase Decrease#
Endpoint: GET /v2/globalBidsIncreaseDecreaseDescription: Returns the change in aggregated global bid volume across all tickers (1000+ assets) compared to the previous candle. Calculated as Bids(t) − Bids(t-1), indicating whether global buy-side liquidity is rising or falling.Summary: Global Bids Increase DecreaseGlobal Asks Increase Decrease#
Endpoint: GET /v2/globalAsksIncreaseDecreaseDescription: Returns the change in aggregated global ask volume across all tickers (1000+ assets) compared to the previous candle. Calculated as Asks(t) − Asks(t-1), indicating whether global sell-side liquidity is rising or falling.Summary: Global Asks Increase Decrease
Common Parameters#
Most endpoints accept the following common query parameters:exchange: Exchange identifier (e.g., binance_perp_stable)
coin: Cryptocurrency symbol (e.g., BTC, ETH)
timeframe: Time interval (1m, 5m, 15m, 1h, 4h, 1d)
limit: Number of data points to return (default: 50)
startTime: Start timestamp (Unix timestamp)
endTime: End timestamp (Unix timestamp)
sort: Sort order (asc or desc)
Authentication#
All endpoints require authentication via:API Key: x-api-key header
Rate Limits#
Rate Limit: 600 requests per minute
Burst Limit: 10 concurrent requests
Base URL#
All endpoints are prefixed with /v2/ and should be accessed via the base API URL.
For detailed request/response schemas and examples, please refer to the OpenAPI specification at /v2/openapi.json or visit the interactive API documentation.Modified at 2025-12-30 13:14:00