Find futures markets on a specific exchange. On Coinranking, we use this endpoint on our exchange futures markets page.
https://api.coinranking.com/v2/futures/exchange/:uuid/markets
| Parameter | Description |
|---|---|
uuid String |
UUID of the exchange whose futures coins you want to retrieve. UUIDs can be found using the futures exchanges endpoint. |
| 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: yhjMzLPhuIDlExample:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?referenceCurrencyUuid=5k-_VTxqtCEI
|
search (optional) String |
Filter markets by base currency name, base currency symbol, quote currency name, or quote currency symbol. Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?search=BTC
|
orderBy (optional) String |
Index to order the list by. Default value: openInterestAllowed values: openInterest 24hVolume price lastTickerCreatedAt Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?orderBy=24hVolume
|
orderDirection (optional) String |
Applies direction to the orderBy query. Default value: descAllowed values: desc asc Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/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: 50Size range: 0-5000 Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?limit=10
|
offset (optional) Number |
Offset. Used for pagination. Default value: 0Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?offset=50
|
cursor (optional) String |
Cursor for pagination. Use the
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/markets?cursor=eyJ0IjoxLC...
|
jsonHTTP/1.1 200 OK
{
"status": "success",
"data": {
"stats": {
"total": 394,
"24hVolume": "171549552743.9990481060981808293",
"openInterest": "71848691689.49994714899281474433"
},
"markets": [
{
"uuid": "DJs58RjCwUee",
"rank": 51,
"base": {
"uuid": "hnfQfsYfeIGUQ",
"symbol": "ETC",
"name": "Ethereum Classic"
},
"quote": {
"uuid": "HIVsRcGKkPFtW",
"symbol": "USDT",
"name": "Tether USD"
},
"exchange": {
"uuid": "-zdvbieRdZ",
"name": "Binance",
"iconUrl": "https://cdn.coinranking.com/mDTK5qrmq/binance.svg",
"websiteUrl": "https://www.binance.com/"
},
"btcPrice": "0.000112095873066245",
"markPrice": "29.13819956742563905268",
"indexPrice": "29.14870948399999905234",
"fundingRate": 0.000878,
"fundingIntervalHours": 8,
"recommended": true,
"filters": [],
"marketShare": "0.05",
"price": "29.1405798759999990526",
"24hVolume": "86971558.57710325317245026479",
"minuteVolume": "60396.91567854391678130379",
"openInterest": "64734242.96178600764580408022"
},
{
"uuid": "aJtSHzmvEgpT",
"rank": 52,
"base": {
"uuid": "tY54Rg0Gh",
"symbol": "JTO",
"name": "JITO"
},
"quote": {
"uuid": "HIVsRcGKkPFtW",
"symbol": "USDT",
"name": "Tether USD"
},
"exchange": {
"uuid": "-zdvbieRdZ",
"name": "Binance",
"iconUrl": "https://cdn.coinranking.com/mDTK5qrmq/binance.svg",
"websiteUrl": "https://www.binance.com/"
},
"btcPrice": "0.000011097006711552",
"markPrice": "2.88479139879999990621",
"indexPrice": "2.88740722211811990613",
"fundingRate": 0.005,
"fundingIntervalHours": 4,
"recommended": true,
"filters": [],
"marketShare": "0.2",
"price": "2.88479139879999990621",
"24hVolume": "349706418.62741793703062468272",
"minuteVolume": "242851.67960237355834948047",
"openInterest": "64423138.43967040750552646156"
}
]
},
"pagination": {
"limit": 50,
"hasNextPage": true,
"hasPreviousPage": false,
"nextCursor": "eyJ0IjoxLC...",
"previousCursor": null
}
}
| Property | Description |
|---|---|
status String |
Status of the request. Allowed values:success |
data.stats Object |
Aggregate statistics across all futures markets on this exchange (not just the current page). |
data.stats.total Number |
Total number of matching futures markets on this exchange. |
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 on this exchange. |
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 |
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 markets on this exchange, 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. |
jsonHTTP/1.1 404 Not Found
{
"status": "fail",
"type": "EXCHANGE_NOT_FOUND",
"message": "Exchange not found"
}