---
title: "BitMart Spot Get Symbols JavaScript SDK Example | Siebly"
description: "BitMart REST spot get symbols 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/Spot/spot-get-symbols"
robots: "index,follow"
---

# BitMart Spot Get Symbols JavaScript SDK Example

BitMart REST spot get symbols 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) / [Spot](/examples/Bitmart/Rest/Spot) / [spot-get-symbols.ts](/examples/Bitmart/Rest/Spot/spot-get-symbols)

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

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

## spot-get-symbols.ts

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

const client = new RestClient();

async function getTickers() {
  try {
    const tickers = await client.getSpotTickersV3();

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

getTickers();
```
