CoinGlass Crypto Derivatives Data Scraper avatar

CoinGlass Crypto Derivatives Data Scraper

Pricing

Pay per usage

Go to Apify Store
CoinGlass Crypto Derivatives Data Scraper

CoinGlass Crypto Derivatives Data Scraper

Scrape crypto derivatives data from CoinGlass — funding rates, open interest, liquidations, long/short ratios, options, and Bitcoin on-chain indices across all major exchanges.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Monkey Coder

Monkey Coder

Maintained by Community

Actor stats

1

Bookmarked

1

Total users

0

Monthly active users

9 days ago

Last modified

Categories

Share

🔗 Scrape crypto derivatives data from CoinGlass — funding rates, open interest, liquidations, long/short ratios, options, and Bitcoin on-chain indices across all major exchanges.

📊 Supported Data Types

Data TypeDescription
Funding RatesCurrent funding rates across all exchanges for all symbols
Funding Rate HistoryHistorical funding rate OHLC data, weighted by open interest
Funding Rate ArbitrageCross-exchange funding rate arbitrage opportunities
Open InterestCurrent open interest broken down by exchange
Open Interest HistoryHistorical open interest chart data
LiquidationsLiquidation data by exchange (long/short breakdown)
Long/Short RatioGlobal long/short account ratio history
Taker Buy/Sell VolumeTaker buy vs sell volume ratios by exchange
Options InfoOptions market overview (call/put volume, OI, IV)
Bitcoin Bubble IndexBitcoin market bubble indicator
AHR999 IndexAHR999 Bitcoin valuation index
Puell MultipleMining revenue relative to historical average
Stock-to-FlowBitcoin stock-to-flow valuation model
Pi Cycle TopPi Cycle Top indicator for Bitcoin market tops
Golden Ratio MultiplierBitcoin price relative to golden ratio moving averages
Bitcoin Profitable DaysPercentage of days Bitcoin was profitable to hold

🔑 Prerequisites

You need a CoinGlass API key to use this Actor. Get one at CoinGlass Pricing.

🚀 How to Use

  1. Get your API key from CoinGlass
  2. Select a data type from the dropdown menu
  3. Enter a symbol (e.g., BTC, ETH, SOL) — required for most data types
  4. Choose time parameters (interval and range) for historical queries
  5. Run the Actor and get structured JSON output

📥 Input Parameters

ParameterRequiredDescription
api_keyYour CoinGlass Open API key
data_typeType of data to fetch (see table above)
symbolFor most typesCryptocurrency symbol (BTC, ETH, SOL, etc.)
intervalFor history typesTime interval: 1h, 4h, 8h, 12h, 24h
time_rangeFor history typesTime range: 1h to 1y
limitOptionalMax data points (default: 500, max: 5000)

📤 Sample Output

Funding Rates

{
"data_type": "funding_rates",
"symbol": "BTC",
"exchange": "Binance",
"value": 0.0001,
"predicted_rate": 0.00012,
"price": 87500.5,
"open_interest": 12500000000,
"fetched_at": "2025-03-21T12:00:00"
}

Open Interest by Exchange

{
"data_type": "open_interest",
"symbol": "ETH",
"exchange": "Binance",
"value": 5200000000,
"open_interest": 5200000000,
"open_interest_change_1h": 0.5,
"open_interest_change_24h": -2.3,
"price": 3450.25,
"fetched_at": "2025-03-21T12:00:00"
}

Bitcoin Bubble Index

{
"data_type": "bitcoin_bubble_index",
"symbol": "BTC",
"exchange": "INDEX",
"value": 65.3,
"price": 87500.5,
"timestamp": "2025-03-21T00:00:00",
"fetched_at": "2025-03-21T12:00:00"
}

⚡ Notes

  • Rate Limits: CoinGlass API has rate limits depending on your subscription tier. The Actor automatically handles 429 responses with a 10-second retry.
  • Bitcoin Indices: Data types starting with "bitcoin_" only work for BTC — the symbol parameter is ignored for these.
  • Historical Data: For funding_rate_history and open_interest_history, use the interval and time_range parameters to control the granularity and range of historical data.
  • Memory: This Actor uses minimal memory (~128MB). Default Apify settings are sufficient.