> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Perpetuals

> What a perpetual future is, how funding and liquidation work, and where perp activity lives in Allium's data.

A **perpetual future** — a perp — is a derivative that tracks the price of an asset without ever expiring. You take a long or short position sized in notional terms, post margin against it, and hold it indefinitely. You never hold the underlying asset.

Perps are the highest-volume product in crypto trading, typically several times spot volume. If you are analyzing crypto market activity and only looking at spot, you are looking at the smaller half.

## Why they exist

A traditional future has a settlement date, so its price converges to spot as expiry approaches. Remove expiry and nothing forces convergence — the perp price can drift arbitrarily far from the asset it is supposed to track.

**Funding** is the mechanism that replaces expiry. At a regular interval, whichever side is in the majority pays the other:

* Perp trading **above** the index price → funding is positive → **longs pay shorts**
* Perp trading **below** the index price → funding is negative → **shorts pay longs**

The payment makes the crowded side expensive to hold, which pushes the price back toward the index. Funding is paid between traders, not to the venue, and intervals vary — hourly on some venues, every eight hours on others.

<Info>
  Funding rate is one of the most-used sentiment signals in crypto. Sustained positive funding means traders are paying to stay long — leverage is skewed bullish and the position is crowded. Sharp funding reversals often accompany liquidation cascades.
</Info>

## Leverage and liquidation

Perps let you control a position much larger than the margin backing it. Margin of \$1,000 at 10x controls \$10,000 of exposure, so a 1% move in the underlying is a 10% move in your equity.

The consequence is **liquidation**. Every position has a maintenance margin requirement; when your equity falls below it, the venue force-closes the position rather than letting the account go negative. You keep whatever margin remains after the close, which after a fast move may be nothing.

Liquidations are reflexive at the market level. Forced closes are market orders in the direction the price is already moving, which pushes the price further, which triggers more liquidations. This is why crypto drawdowns are sharp and why liquidation data is worth watching on its own.

## The vocabulary

| Term                   | Meaning                                                                                                 |
| :--------------------- | :------------------------------------------------------------------------------------------------------ |
| **Index price**        | Reference price of the underlying, usually an oracle or blended spot feed                               |
| **Mark price**         | The price used for margin, PnL, and liquidation — index plus a bounded premium from the perp's own book |
| **Open interest**      | Total notional of outstanding positions in a market, counted once, not per side                         |
| **Funding rate**       | The periodic payment between longs and shorts                                                           |
| **Maintenance margin** | The equity floor below which a position is liquidated                                                   |
| **Notional**           | Position size in value terms, before leverage is accounted for                                          |

The full glossary, with the unit conventions that differ per venue, is at [Perpetuals concepts](/historical-data/perpetuals/concepts).

## Onchain vs offchain perps

Centralized venues run perps on internal systems, and their data reaches you only through their APIs. Onchain perp venues put some or all of the lifecycle on a chain, which makes it independently observable.

They split into two designs, both covered in [AMMs vs CLOBs](/guides/amms-vs-clobs):

* **Order-book venues** — Hyperliquid, Lighter, dYdX. A book of resting orders, matched into fills. Usually on an appchain built for the throughput a book requires.
* **Pool-based venues** — GMX, Jupiter Perps. Traders take positions against a shared liquidity pool rather than a counterparty, with the pool taking the other side.

## Where to look in Allium

Allium normalizes perp activity across venues into a single set of tables.

| You want                              | Table                                                                                                                                                                                          |
| :------------------------------------ | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Executed perp trades                  | [Trades](/historical-data/perpetuals/trades)                                                                                                                                                   |
| Funding rates and payments            | [Funding](/historical-data/perpetuals/funding)                                                                                                                                                 |
| Liquidation events                    | [Liquidations](/historical-data/perpetuals/liquidations)                                                                                                                                       |
| Open positions per account            | [Positions](/historical-data/perpetuals/positions)                                                                                                                                             |
| Market definitions and parameters     | [Markets](/historical-data/perpetuals/markets)                                                                                                                                                 |
| Bid and ask levels at a point in time | [Order books](/historical-data/perpetuals/order-books)                                                                                                                                         |
| Per-venue detail                      | [Hyperliquid](/historical-data/perpetuals/hyperliquid), [Lighter](/historical-data/perpetuals/lighter), [GMX](/historical-data/perpetuals/gmx), [Jupiter](/historical-data/perpetuals/jupiter) |

<Warning>
  Notional and contract units are not standardized across venues. One venue quotes size in the base asset, another in USD, another in contracts of a fixed multiple. Always read the unit from the venue's table page before comparing or summing across venues.
</Warning>

## Next steps

* [Perpetuals overview](/historical-data/perpetuals/overview) — the full data vertical
* [AMMs vs CLOBs](/guides/amms-vs-clobs) — the matching models underneath
* [Oracles](/guides/oracles) — where the index price comes from
