---
title: "BitMart Futures Get Tickers JavaScript SDK Example | Siebly"
description: "BitMart REST futures get tickers JavaScript example for the Siebly BitMart SDK, covering exchange REST API and WebSocket integration, setup, and production SDK docs."
canonical: "https://siebly.io/examples/Bitmart/Rest/Futures/futures-get-tickers"
robots: "index,follow"
---

# BitMart Futures Get Tickers JavaScript SDK Example

BitMart REST futures get tickers JavaScript example for the Siebly BitMart SDK, covering exchange REST API and WebSocket integration, setup, and production SDK docs.

**Path:** [Home](/) / [Examples](/examples) / [Bitmart](/examples/Bitmart) / [Rest](/examples/Bitmart/Rest) / [Futures](/examples/Bitmart/Rest/Futures) / [futures-get-tickers.ts](/examples/Bitmart/Rest/Futures/futures-get-tickers)

[View source on GitHub](https://github.com/sieblyio/crypto-api-examples/blob/master/examples/Bitmart/Rest/Futures/futures-get-tickers.ts)

[Open the BitMart JavaScript SDK guide](/sdk/bitmart/javascript)

## futures-get-tickers.ts

```typescript
import { FuturesClientV2 } from 'bitmart-api';

const client = new FuturesClientV2();

async function getFuturesTickers() {
  try {
    const tickers = await client.getFuturesContractDetails();

    console.log('Tickers: ', JSON.stringify(tickers, null, 2));
  } catch (e) {
    console.error('Req error: ', e);
  }
}

getFuturesTickers();
```
