Get futures markets

Professional This endpoint requires the professional plan or higher

Get a list of futures markets. Markets are ranked by their open interest by default. Use the filters to narrow down the list to specific exchanges, coins, or trading pairs.

On Coinranking, we use this endpoint on our futures market ranking table.

https://api.coinranking.com/v2/futures/markets

Query parameters

Parameter Description
referenceCurrencyUuid (optional) String

UUID of coin (either fiat or crypto), in which all prices, volume, and open interest values are calculated. Defaults to US Dollar, but you can use any coin. You can find UUIDs for reference currencies in any coin endpoint, including a convenient dedicated reference currency endpoint.

Default value: yhjMzLPhuIDl

Example:
https://api.coinranking.com/v2/futures/markets?referenceCurrencyUuid=5k-_VTxqtCEI
search (optional) String

Filter markets by exchange name, base currency name, base currency symbol, quote currency name, or quote currency symbol.

Example:
https://api.coinranking.com/v2/futures/markets?search=BTC
orderBy (optional) String

Index to order the list by.

Default value: openInterest
Allowed values:
openInterest 24hVolume price

Example:
https://api.coinranking.com/v2/futures/markets?orderBy=24hVolume
orderDirection (optional) String

Applies direction to the orderBy query.

Default value: desc
Allowed values:
desc asc

Example:
https://api.coinranking.com/v2/futures/markets?orderDirection=asc
limit (optional) Number

Limit. Used for pagination. The maximum amount of results you can fetch in one request is 5000 for the Startup and Professional plan, and 100 for the Free plan.

Default value: 50
Size range: 0-5000

Example:
https://api.coinranking.com/v2/futures/markets?limit=10
offset (optional) Number

Offset. Used for pagination.

Default value: 0

Example:
https://api.coinranking.com/v2/futures/markets?offset=50
cursor (optional) String

Cursor for pagination. Use the nextCursor value from the previous response to get the next page of results, or the previousCursor value to navigate back to the previous page. See Pagination for more information.

Example:
https://api.coinranking.com/v2/futures/markets?cursor=eyJ0IjoxLC...

Code examples

Response

json
HTTP/1.1 200 OK { "status": "success", "data": { "stats": { "total": 8240, "24hVolume": "152318730542.0596", "openInterest": "98765432109.7654" }, "markets": [ { "uuid": "9mm7u0M2fkO9R", "rank": 1, "base": { "uuid": "Qwsogvtv82FCd", "symbol": "BTC", "name": "Bitcoin" }, "quote": { "uuid": "HIVsRcGKkPFtW", "symbol": "USDT", "name": "Tether" }, "exchange": { "uuid": "-zdvbieRdZ", "name": "Binance", "iconUrl": "https://cdn.coinranking.com/mDTK5qrmq/binance.svg", "websiteUrl": "https://www.binance.com" }, "marketShare": "8.14", "price": "65261.39", "markPrice": "65265.00", "indexPrice": "65258.50", "btcPrice": "1", "24hVolume": "12400000000.00", "minuteVolume": "8611111.11", "openInterest": "9200000000.00", "fundingRate": "-0.0025", "fundingIntervalHours": 8, "recommended": true, "filters": [] } ] }, "pagination": { "limit": 50, "hasNextPage": true, "hasPreviousPage": false, "nextCursor": "eyJ0IjoxLC...", "previousCursor": null } }

Response fields

PropertyDescription
status String

Status of the request.

Allowed values:
success
data Object
data.stats Object

Aggregate statistics across all matching futures markets (not just the current page).

data.stats.total Number

Total number of matching futures markets.

data.stats.24hVolume String

Total 24h volume of matching markets in the reference currency.

data.stats.openInterest String

Total open interest of matching markets in the reference currency.

data.markets Object[]

List of futures markets.

data.markets.uuid String

UUID of the futures market.

data.markets.rank Number

Position in the ranked list for the selected ordering.

data.markets.base Object

The coin on the left side of the pair, which price is calculated in units of the quote.

data.markets.base.uuid String

UUID of the base currency.

data.markets.base.symbol String

Symbol of the base currency.

data.markets.base.name String

Name of the base currency.

data.markets.quote Object

The coin on the right side of the pair. The amount in tickers are how much quote you get for one unit of base. E.g. BTC/USDT 65000 means 1 BTC is traded for 65000 USDT.

data.markets.quote.uuid String

UUID of the quote currency.

data.markets.quote.symbol String

Symbol of the quote currency.

data.markets.quote.name String

Name of the quote currency.

data.markets.exchange Object

Exchange this market belongs to.

data.markets.exchange.uuid String

UUID of the exchange.

data.markets.exchange.name String

Name of the exchange.

data.markets.exchange.iconUrl String

Location of the icon. Replace .svg with .png or .webp, optionally with ?size=WIDTHxHEIGHT (e.g. ?size=28x28) to control dimensions. See Icons for more details.

data.markets.exchange.websiteUrl String/null

Website URL of the exchange.

data.markets.marketShare String/null

This market's share of the total 24h volume across all matching markets, as a percentage string.

data.markets.price String/null

Latest futures price in the reference currency.

data.markets.markPrice String/null

Mark price in the reference currency. Used by exchanges to calculate unrealized PnL and trigger liquidations.

data.markets.indexPrice String/null

Index price in the reference currency. Typically a weighted average of spot prices across major exchanges.

data.markets.btcPrice String/null

Price of the market expressed in Bitcoin.

data.markets.24hVolume String/null

24-hour trading volume in the reference currency.

data.markets.minuteVolume String/null

Trading volume in the last minute, in the reference currency.

data.markets.openInterest String/null

Open interest in the reference currency.

data.markets.fundingRate String/null

Funding rate as reported by the exchange for the most recent funding interval. Null when not available.

data.markets.fundingIntervalHours Number/null

Funding interval in hours as reported by the exchange (e.g. 8 for standard perpetuals).

data.markets.recommended Boolean

Whether the market is recommended based on the exchange it belongs to, see https://support.coinranking.com/article/82-recommended-exchanges.

data.markets.filters String[]

An array of filters that are applied to the market. Most of the filters will cause the market to not be included in the price calculation of the coins.

pagination Object

Pagination information. See Pagination for more details.

pagination.limit Number

The number of results per page.

pagination.hasNextPage Boolean

Whether there are more results available after the current page.

pagination.hasPreviousPage Boolean

Whether there are results available before the current page.

pagination.nextCursor String/null

Cursor to use for the next page, or null if there are no more results.

pagination.previousCursor String/null

Cursor to use for the previous page, or null if on the first page.

Error response

json
HTTP/1.1 422 Unprocessable Entity { "status": "fail", "type": "REFERENCE_UNAVAILABLE", "message": "Reference currency not available" }

Error responses