Get futures exchange coins

Professional This endpoint requires the professional plan or higher

Find futures coins listed on a specific exchange. On Coinranking, we use this endpoint on our futures exchange coin listings.

https://api.coinranking.com/v2/futures/exchange/:uuid/coins

Path parameters

Parameter Description
uuid String

UUID of the exchange whose futures coins you want to retrieve. UUIDs can be found using the futures exchanges endpoint.

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/exchange/-zdvbieRdZ/coins?referenceCurrencyUuid=5k-_VTxqtCEI
search (optional) String

Filter coins by name or symbol prefix.

Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/coins?search=bitcoin
orderBy (optional) String

Index to order the list by.

Default value: openInterest
Allowed values:
openInterest 24hVolume price fundingRate

Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/coins?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/exchange/-zdvbieRdZ/coins?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/exchange/-zdvbieRdZ/coins?limit=10
offset (optional) Number

Offset. Used for pagination.

Default value: 0

Example:
https://api.coinranking.com/v2/futures/exchange/-zdvbieRdZ/coins?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/exchange/-zdvbieRdZ/coins?cursor=eyJ0IjoxLC...

Code examples

Response

json
HTTP/1.1 200 OK { "status": "success", "data": { "stats": { "total": 364 }, "coins": [ { "uuid": "HIVsRcGKkPFtW", "symbol": "USDT", "name": "Tether USD", "color": "#22a079", "iconUrl": "https://cdn.coinranking.com/iqfxcAEV1/tether-usd-usdt.svg", "coinrankingUrl": "https://coinranking.com/coin/HIVsRcGKkPFtW+tetherusd-usdt", "rank": 1, "fundingRate": "-0.001612688073858576", "numberOfMarkets": 353, "price": "0.9996242792474768", "24hVolume": "35517299695.982635", "openInterest": "15034462427.315395" }, { "uuid": "Qwsogvtv82FCd", "symbol": "BTC", "name": "Bitcoin", "color": "#f7931A", "iconUrl": "https://cdn.coinranking.com/bOabBYkcX/bitcoin_btc.svg", "coinrankingUrl": "https://coinranking.com/coin/Qwsogvtv82FCd+bitcoin-btc", "rank": 2, "fundingRate": "0.00214894631298156", "numberOfMarkets": 4, "price": "63934.29464920227", "24hVolume": "17167029616.132805", "openInterest": "7511142889.425773" } ] }, "pagination": { "limit": 50, "hasNextPage": true, "hasPreviousPage": false, "nextCursor": "eyJ0IjoxLC...", "previousCursor": null } }

Response fields

Property Description
status String

Status of the request.

Allowed values:
success
data.stats Object

Aggregate statistics across all futures coins listed on this exchange (not just the current page).

data.stats.total Number

Total number of matching coins.

data.coins Object[]

List of futures coins listed on this exchange.

data.coins.rank Number

The rank of this coin within this exchange result set.

data.coins.uuid String

UUID of the coin.

data.coins.symbol String

Coin symbol.

data.coins.name String

Name of the coin.

data.coins.color String|null

Hex color associated with the coin brand.

data.coins.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.coins.coinrankingUrl String

Where to find the coin on coinranking.com.

data.coins.price String|null

Latest futures price of the coin in the reference currency.

data.coins.24hVolume String|null

Total 24h volume of this coin on the selected futures exchange, in the reference currency.

data.coins.openInterest String|null

Open interest for this coin on the selected futures exchange, in the reference currency.

data.coins.fundingRate String|null

Open-interest-weighted average 8-hour funding rate for this coin on the selected exchange. Null when not available.

data.coins.numberOfMarkets Number|null

The number of futures markets for this coin on this exchange.

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 404 Not Found { "status": "fail", "type": "EXCHANGE_NOT_FOUND", "message": "Exchange not found" }

Error responses