VOOZH about

URL: https://apify.com/yyber/dex-funding-aggregator

⇱ DEX Funding Rate Aggregator Β· Apify


Pricing

Pay per usage

Go to Apify Store

DEX Funding Rate Aggregator

Aggregate perpetual funding rates across Hyperliquid, Aster, Lighter, and Pacifica with Binance/Bybit as CEX reference. Spot DEX-vs-CEX funding spreads and cross-venue carry-trade signals. No API key required.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

πŸ‘ YY

YY

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

0

Monthly active users

10 days ago

Last modified

Share

The first Actor on Apify Store dedicated to DEX perpetual funding rates.
Aggregate live funding rates across Hyperliquid, Aster, Lighter, and Pacifica β€” with Binance and Bybit as CEX benchmarks β€” in a single call. No API key required.


The Problem

DEX perpetual funding rates are scattered across 4+ different chains and APIs with no unified view. A trader trying to find carry-trade opportunities must manually check Hyperliquid (Ethereum L1), Aster (BNB Chain), Lighter (Ethereum ZK L2), and Pacifica (Solana) β€” all with different data formats and funding intervals.

Meanwhile, DEX funding rates routinely diverge from CEX (Binance/Bybit) by 10–20% APR β€” a real, recurring arbitrage opportunity that goes undetected without cross-venue aggregation.

The Solution

This Actor fetches, normalizes, and compares funding rates across 6 venues in one call, surfacing:

  • πŸ† Best carry-trade pair: which venue to long, which to short
  • πŸ“Š Cross-venue spread: total APR captured by holding both sides
  • πŸ“‘ DEX-vs-CEX spread: how much DEX funding deviates from CEX baseline

Live example output (real data, June 20 2026):

SymbolBest LongBest ShortSpread APR
ETHPacifica (βˆ’9.6%)Hyperliquid (+11.0%)20.5%
SOLBinance (βˆ’7.2%)Hyperliquid (+11.0%)18.1%
BTCPacifica (βˆ’7.3%)Hyperliquid (+8.3%)15.6%

A 20% APR spread on ETH means: long ETH on Pacifica (receive 9.6% APR from shorts), short ETH on Hyperliquid (receive 11.0% APR from longs) = 20.6% annualized yield, delta-neutral.


What It Does

  1. Fetches live funding rates from 6 venues in parallel
  2. Normalizes all rates to APR% (accounts for different settlement intervals: 1h vs 8h)
  3. Computes cross-venue spread, DEX-vs-CEX spread, best long/short venue per symbol
  4. Filters & sorts by spread size or absolute funding magnitude
  5. Alerts via Telegram when funding exceeds your threshold

Platforms Covered

PlatformTypeChainFunding Interval
HyperliquidDEXOwn L11h
AsterDEXMulti-chain (BNB Chain + Aster Chain L1)8h
LighterDEXEthereum ZK L28h
PacificaDEXSolana1h
BinanceCEX referenceβ€”8h
BybitCEX referenceβ€”8h

All endpoints are public. No API keys required.


Input

FieldTypeDefaultDescription
symbolsstring[]["BTC","ETH","SOL"]Symbols to track
includeHyperliquidbooleantrue
includeAsterbooleantrue
includeLighterbooleantrue
includePacificabooleantrue
includeBinancebooleantrueCEX reference
includeBybitbooleantrueCEX reference
minAbsFundingAprnumber0Filter: skip if max |APR| below this
minVenueSpreadAprnumber0Filter: skip if spread below this
sortBystringspread_descspread_desc / abs_funding_desc / symbol_asc
alertAbsAprnumber0Telegram alert threshold (0 = disabled)
telegramBotTokenstring (secret)β€”
telegramChatIdstringβ€”

Example: Find all symbols with spread > 5% APR

{
"symbols":["BTC","ETH","SOL"],
"minVenueSpreadApr":5,
"sortBy":"spread_desc"
}

Example: Telegram alert when funding goes extreme

{
"symbols":["BTC","ETH","SOL"],
"alertAbsApr":30,
"telegramBotToken":"<token>",
"telegramChatId":"<chat_id>"
}

Output

Each record represents one symbol across all enabled venues:

{
"symbol":"ETH",
"hyperliquid_funding_apr_pct":10.95,
"aster_funding_apr_pct":0.0,
"lighter_funding_apr_pct":-0.876,
"pacifica_funding_apr_pct":-9.583,
"binance_funding_apr_pct":4.071,
"bybit_funding_apr_pct":9.161,
"max_abs_funding_apr_pct":10.95,
"venue_spread_apr_pct":20.533,
"dex_cex_spread_apr_pct":6.879,
"best_long_venue":"pacifica",
"best_short_venue":"hyperliquid",
"exchanges_present":6,
"next_funding_time":"2026-06-20T16:00:00.000Z",
"timestamp":"2026-06-20T11:36:24.650Z"
}
FieldDescription
*_funding_apr_pctFunding rate annualized to APR%
venue_spread_apr_pctMax APR minus min APR β€” the carry-trade spread
dex_cex_spread_apr_pctMax DEX APR minus min CEX APR β€” DEX premium
best_long_venueCheapest venue to hold long (or receive most as short)
best_short_venueBest venue to hold short and collect funding
exchanges_presentNumber of venues with data for this symbol (1–6)

Data Sources

VenueEndpoint
HyperliquidPOST https://api.hyperliquid.xyz/info (metaAndAssetCtxs)
AsterGET https://fapi.asterdex.com/fapi/v1/premiumIndex
LighterGET https://mainnet.zklighter.elliot.ai/api/v1/funding-rates
PacificaGET https://api.pacifica.fi/api/v1/funding_rate/history
Binancevia Lighter aggregated endpoint (avoids geo-restrictions)
Bybitvia Lighter aggregated endpoint (avoids geo-restrictions)

Why This Matters

Carry trading is one of the most consistent yield strategies in crypto β€” but it requires knowing where the rate imbalance is. CEX funding rates are well-covered. DEX rates are not.

This Actor fills that gap: one call, 6 venues, actionable spread signal.

Use cases:

  • Quant traders β€” scan for entry signals, run on schedule via Apify
  • DeFi protocols β€” monitor funding conditions across chains
  • Risk desks β€” track DEX-vs-CEX divergence as a market stress indicator

Live Sample Run: https://console.apify.com/storage/datasets/YEeLI3ofDrd8KoV76

You might also like

CEX Perp Funding Aggregator

automation-lab/cex-perp-funding-aggregator

Track Binance perpetual futures funding rates with normalized APR, prices, next funding times, and optional open interest for crypto quant workflows.

πŸ‘ User avatar

Stas Persiianenko

2

πŸ’°Company Funding Details Scraper

tech_gear/company-funding-details

βœ…Extract detailed company funding information.βœ…Access funding events, revenue, total funding, and investors.

108

1.0

CEX Funding Rate Arbitrage

seralifatih/cex-funding-rate-arbitrage

Scan 500+ crypto pairs for high-yield funding arbitrage on Binance, Bybit, & OKX. Instantly detects delta-neutral opportunities with annualized spreads, execution risk scores, and confidence metrics. Developer-ready JSON output for quants and trading bots. No noise, just alpha.

πŸ‘ User avatar

Fatih Δ°lhan

22

Funding Pulse

fraktalapi/funding-pulse

Real-time funding rates, open interest, liquidations, long/short ratios, and cross-exchange spread signals from Bybit, Binance, OKX, Bitget, dYdX, and Hyperliquid. CoinGlass alternative at a fraction of the price.

πŸ“‰ Crypto Perp Funding Rates Tracker β€” Binance Futures

nexgendata/crypto-perp-funding-rates-tracker

Track perpetual-futures funding rates (8h + annualized), mark and index prices across all Binance USDβ“ˆ-M perpetual markets. For crypto quants and prop traders monitoring leverage positioning.

Company Funding Activities

pratikdani/company-funding-activities

Get complete funding information of a company

Bybit Tickers Scraper

parseforge/bybit-tickers-scraper

Scrape Bybit spot and linear futures ticker data including price, 24h volume, mark price, funding rate, and bid/ask for all trading pairs. No API key required.