> ## Documentation Index
> Fetch the complete documentation index at: https://docs.amberdata.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Tokenized Equity Instruments Now Available

## February 24, 2026

We're excited to announce support for **tokenized equity instruments** across three exchanges: **Kraken**, **Hyperliquid**, and **BitMEX**. Customers can now access market data for equity-linked assets — including stocks like AAPL, TSLA, and more — directly through the same API endpoints, WebSockets, and bulk delivery methods used for all other Market Data products.

### What's New

**Kraken xStocks (Spot)**

Tokenized equities are now available in our Spot datasets via Kraken's xStocks product. Instruments follow the `{ticker}x/USD` format (e.g., `AAPLx/USD`) and are normalized in our APIs to lowercase with an underscore separator (e.g., `aaplx_usd`).

Available datasets:

* OHLCV
* Order Book (Snapshots & Events)
* Tickers
* Trades

To retrieve the full list of tokenized equity instruments, use the [Reference endpoint](https://docs.amberdata.io/http/market/spot-exchanges-reference) with `includeOriginalReference=true` and filter for `aclassBase == tokenized_asset`.

**Hyperliquid (Futures)**

Equity perpetuals from Hyperliquid are now available in our Futures datasets. Instruments use a `dex:coin` format (e.g., `cash:TSLA`), where `cash` is the builder/DEX name and `TSLA` is the equity ticker. Instrument names are not normalized in our APIs — they remain as-is. The `quoteSymbol` is always `USDT`.

Available datasets:

* Funding Rates
* OHLCV
* Open Interest
* Order Book Snapshots
* Trades

**BitMEX (Futures)**

Equity-linked perpetuals from BitMEX are now available in our Futures datasets. Instruments use a concatenated format (e.g., `TSLAUSDT`) and are identified by the type code `FFSCSX`. As with Hyperliquid, instrument names are not normalized. The `baseSymbol` is the equity ticker and the `quoteSymbol` is `USDT`.

Available datasets:

* Funding Rates
* OHLCV
* Open Interest
* Order Book Snapshots
* Trades

### Quick Reference

<table>
  <thead>
    <tr>
      <th />

      <th>Kraken</th>
      <th>Hyperliquid</th>
      <th>BitMEX</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <th scope="row"><strong>Dataset</strong></th>
      <td>Spot</td>
      <td>Futures</td>
      <td>Futures</td>
    </tr>

    <tr>
      <th scope="row"><strong>Exchange Format</strong></th>
      <td><code>AAPLx/USD</code></td>
      <td><code>cash:TSLA</code></td>
      <td><code>TSLAUSDT</code></td>
    </tr>

    <tr>
      <th scope="row"><strong>API Instrument Name</strong></th>
      <td><code>aaplx\_usd</code> (normalized)</td>
      <td><code>cash:TSLA</code> (not normalized)</td>
      <td><code>TSLAUSDT</code> (not normalized)</td>
    </tr>

    <tr>
      <th scope="row"><strong>Base Symbol</strong></th>
      <td><code>AAPLx</code></td>
      <td><code>TSLA</code></td>
      <td><code>TSLA</code></td>
    </tr>

    <tr>
      <th scope="row"><strong>Quote Symbol</strong></th>
      <td><code>USD</code></td>
      <td><code>USDT</code></td>
      <td><code>USDT</code></td>
    </tr>

    <tr>
      <th scope="row"><strong>Identifying Filter</strong></th>
      <td><code>aclassBase == tokenized\_asset</code></td>
      <td>Builder prefix (e.g., <code>cash:</code>)</td>
      <td><code>type == FFSCSX</code></td>
    </tr>
  </tbody>
</table>

### How to Access

Tokenized equity data is available through the same ingestion methods as all other Market Data products:

* **REST API** — Query endpoints for Spot and Futures datasets as usual, using the instrument names outlined above.
* **WebSockets** — Subscribe to real-time streams using the same instrument naming conventions.
* **Bulk Delivery** — Tokenized equity instruments are included in standard bulk data exports.

No additional configuration or subscription changes are required. If you already have access to the relevant Spot or Futures datasets, tokenized equity instruments are available to you today.

For more details on instrument naming conventions and how to discover available instruments, see our [Data Dictionary FAQ](/data-dictionary/faq).
