Hyperliquid's Base Fee Schedule (Before Any Discounts)
"How do I save on Hyperliquid trading fees" usually gets answered with a single tip — use a referral code — and stops there. That tip is real, but it's one of three stacking discounts, and the other two (HYPE staking and volume tiers) are worth more to most active traders. Here's the full picture, with the exact numbers from Hyperliquid's own fee documentation.
The headline schedule looks simple: 0.015% maker / 0.045% taker at the base tier. But that's Tier 0 — the rate before any account-level discounts, and almost nobody trading real size pays it. Fees also drop on their own as your 14-day trailing volume grows:
| Tier | 14-day volume | Maker | Taker |
|---|---|---|---|
| 0 | Base | 0.015% | 0.045% |
| 1 | >$5M | 0.012% | 0.040% |
| 2 | >$25M | 0.008% | 0.035% |
| 3 | >$100M | 0.004% | 0.030% |
| 4 | >$500M | 0.000% | 0.028% |
| 5 | >$2B | 0.000% | 0.026% |
| 6 | >$7B | 0.000% | 0.024% |
Those volume tiers are Hyperliquid's own ladder — you don't have to do anything to climb it besides trade. The two discounts most traders miss are account-level, and both apply on top of whichever volume tier you're already in: a referral discount you set once at signup, and a staking discount tied to how much HYPE you hold staked.
The Referral Discount: 4% Off From Signup
Every Hyperliquid account gets a 4% discount on both maker and taker fees if it was created through a referral link or with a referral code entered at signup. It costs nothing, requires no minimum trade size, and applies immediately — there's no volume threshold to clear first.
Trade on Hyperliquid — sign up through our link (or enter code CRYPTODATAAPI during onboarding) and get 4% off every maker and taker fee from your very first trade. Join via our referral →
Referral code: CRYPTODATAAPI. Referral link — CryptoDataAPI may earn a commission on referred signups, at no extra cost to you.
Two details most referral round-ups leave out, straight from Hyperliquid's own fee documentation:
- The code has to go in before your first trade. Referral discounts attach at account creation — connect your wallet through the link (or paste the code on the signup screen) before you place any order. Once an account has trading history, a code can no longer be attached to it.
- The discount isn't unlimited. Per Hyperliquid's fee docs, the referral discount applies to a user's first $25M in trading volume — plenty for the overwhelming majority of traders, but worth knowing if you're running serious size.
How Much HYPE Do You Need to Stake to Get a Fee Discount?
Separately from referrals, Hyperliquid runs a staking discount based on how much HYPE you have natively staked (not LP'd, not just sitting in a spot wallet). The entry point is lower than most people assume:
| Tier | HYPE staked | Fee discount |
|---|---|---|
| Wood | >10 HYPE | 5% |
| Bronze | >100 HYPE | 10% |
| Silver | >1,000 HYPE | 15% |
| Gold | >10,000 HYPE | 20% |
| Platinum | >100,000 HYPE | 30% |
| Diamond | >500,000 HYPE | 40% |
Confirmed against Hyperliquid's own fee documentation: staking just over 10 HYPE — a few hundred dollars at typical prices — puts you in the Wood tier for a 5% fee discount, on top of whatever the referral and volume-tier discounts already give you. There's no lockup beyond Hyperliquid's normal unstaking queue, and the discount reads your currently staked balance directly — stake more HYPE and you move up tiers automatically, no re-enrollment needed.
How the Discounts Stack (It's Multiplicative, Not Additive)
It's tempting to add these up — "4% + 5% = 9% off" — but that's not how Hyperliquid's fee engine actually computes it. Referral, staking, and volume-tier discounts all multiply against each other, not add:
effective_fee = tier_fee × (1 − referral_discount) × (1 − staking_discount)Worked example at the base Tier 0 taker rate (0.045%):
- No discounts: 0.045%
- + 4% referral: 0.045% × 0.96 = 0.0432%
- + Wood staking (5%): 0.0432% × 0.95 = 0.04104%
That's an 8.8% real reduction off the sticker rate — close to the naive 9%, but not exactly it, and the gap widens at higher discount tiers. On $100,000 of taker volume, that's $45.00 down to $41.04 — $3.96 saved before you've done anything except sign up through a link and stake a few hundred dollars of HYPE.
Climb further and it compounds: a trader at Gold staking (20% off) doing enough volume to hit Tier 2 (0.035% taker, >$25M/14d) pays 0.035% × 0.80 = 0.028% — notably, that's also roughly where the referral discount's $25M volume cap phases out, so the two trade off against each other as you scale rather than both applying forever.
To see what that means in dollars for your own trading, pull live 24h volume from the same API used earlier and run it through the stacking formula:
import httpx
BASE = "https://cryptodataapi.com/api/v1/hyperliquid"
STAKING_DISCOUNTS = {
"wood": 0.05, "bronze": 0.10, "silver": 0.15,
"gold": 0.20, "platinum": 0.30, "diamond": 0.40,
}
def estimate_monthly_fee(coin: str, api_key: str, referral=True, staking_tier=None):
"""Rough monthly taker-fee cost from live 24h volume, Tier 0 rate."""
r = httpx.get(f"{BASE}/open-interest", headers={"X-API-Key": api_key})
asset = next(a for a in r.json()["assets"] if a["coin"] == coin)
monthly_volume = asset["day_volume"] * 30
fee_rate = 0.00045
if referral:
fee_rate *= 0.96
if staking_tier:
fee_rate *= 1 - STAKING_DISCOUNTS[staking_tier]
return round(monthly_volume * fee_rate, 2)Swap in your own trade size instead of full market volume and this gives a fast before/after comparison — useful for deciding whether staking up a tier is worth locking up more HYPE.
Before You Optimize Fees, Check the Market Has Depth
A 5% discount on a 0.045% fee is worth 0.00225 percentage points. Walking a market order through a thin order book can cost 10-50x that in slippage alone — so the fee optimization in this post only pays off if you're also trading into real liquidity.
Pull the live book before sizing a trade:
curl -H "X-API-Key: YOUR_KEY" \
"https://cryptodataapi.com/api/v1/hyperliquid/l2-book?coin=BTC"
{
"coin": "BTC",
"bids": [
{ "price": 96100.0, "size": 2.8, "count": 5 },
{ "price": 96050.0, "size": 4.2, "count": 8 }
],
"asks": [
{ "price": 96150.0, "size": 1.9, "count": 3 },
{ "price": 96200.0, "size": 5.1, "count": 12 }
]
}Sum size across the top few levels on each side; if your order is more than a small fraction of that depth, you'll pay more in spread than any staking tier saves you. Cross-check against 24h volume from /api/v1/hyperliquid/open-interest before trading anything outside the top ~20 coins by volume — that's where thin-book slippage does the most damage to an otherwise well-optimized fee stack.
How to Claim Both Discounts, Step by Step
- Sign up through the referral link above (or enter code
CRYPTODATAAPIon the signup screen) before connecting your wallet or placing any trade. - Stake HYPE natively from Hyperliquid's staking page — even a Wood-tier stake (just over 10 HYPE) unlocks the first 5% discount tier.
- Confirm both are active — Hyperliquid's fee page shows your current maker/taker rate inclusive of every discount, so you can verify the math instead of trusting it.
- Let volume tiers stack on top — nothing else to do here; 14-day trailing volume upgrades you automatically as you trade.
One thing you can't undo: if you already have a Hyperliquid account with trading history, a referral code can no longer be attached to it — that discount is only available at signup, on a fresh account. The staking discount has no such restriction and can be added to any account, at any time, simply by staking HYPE.
What if I unstake later? The discount reads your live staked balance, not a one-time snapshot — drop below a tier's threshold and that tier's discount stops applying to fees going forward. It doesn't claw back anything you already saved, so there's no downside to starting small at Wood tier and adding more HYPE later.



