> For the complete documentation index, see [llms.txt](https://hertzflow.gitbook.io/hertzflow-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hertzflow.gitbook.io/hertzflow-docs/tech-docs/api/market-list-api.md).

# Market List API

Returns every market with its leverage limits, open interest, 24h price stats, and token addresses. Useful for discovering tradable pairs and their on-chain configuration.

### Endpoint

```
GET /api/v1/bsc/markets
```

Base URL: `https://data-statistics-query.beatnet.htzfl.link`

### Parameters

No query parameters are required.

### Example Request

```bash
curl -X GET "https://data-statistics-query.beatnet.htzfl.link/api/v1/bsc/markets" \
  -H "Accept: application/json"
```

### Example Response

```json
{
  "code": 200,
  "msg": "",
  "data": {
    "markets": [
      {
        "symbol": "BTC/USD",
        "display_name": "BTC/USD",
        "icon": "BTC",
        "px_disp_decimal": 2,
        "category": "crypto",
        "max_leverage": 50,
        "max_leverage_normal": 50,
        "min_leverage_hyper": 84,
        "max_leverage_hyper": 200,
        "hyper_mode_enabled": true,
        "loss_rebate_rate": "0",
        "pnl_cap_factor": "750000000000000000000000000000",
        "oi_long": "1491378660994161131398011352666002840",
        "oi_short": "1464246419718798270604510051500438226",
        "open_24h": "65498.93658727",
        "high_24h": "66411.9017354",
        "low_24h": "63636.10820738",
        "volume_24h": "2011045424306333960953621167668127942",
        "market_address": "0xd537CD7D937446442c62B98c10a9c303152F289a",
        "index_token_address": "0x2D8f28F05113C2DC0A17EBbBa60D8f72318BdB1F",
        "long_token_address": "0x6335881872FEcab922d1d83c6Bae6E27C5a9209c",
        "short_token_address": "0x6335881872FEcab922d1d83c6Bae6E27C5a9209c",
        "next_market_open_time": 1781841600000,
        "next_market_close_time": 1781841600000,
        "schedule": "America/New_York;O,O,O,O,O,O,O;",
        "is_holiday": false,
        "is_view": true,
        "max_pnl_factor_for_traders": "750000000000000000000000000000",
        "min_zfp_collateral_factor_for_liq": "1666666700000000000000000000",
        "min_position_size_usd": "0",
        "min_zfp_position_size_usd": "0",
        "weak_side": "short",
        "oi_skew_usd": "27132241275362860793501301165564614",
        "is_market_pausing": false,
        "is_default": false
      }
    ]
  }
}
```

### Response Fields

| Field                                              | Type    | Description                                                            |
| -------------------------------------------------- | ------- | ---------------------------------------------------------------------- |
| `symbol` / `display_name`                          | string  | Market symbol, e.g. `BTC/USD`                                          |
| `icon`                                             | string  | Icon key for the asset                                                 |
| `px_disp_decimal`                                  | number  | Price display precision (decimal places)                               |
| `category`                                         | string  | Asset class: `crypto`, `forex`, `commodity`, `equity`, `index`, `meme` |
| `max_leverage` / `max_leverage_normal`             | number  | Max leverage in Normal mode                                            |
| `min_leverage_hyper` / `max_leverage_hyper`        | number  | Leverage range in Hyper Lev mode                                       |
| `hyper_mode_enabled`                               | boolean | Whether Hyper Lev is available on this market                          |
| `loss_rebate_rate`                                 | string  | Max loss-rebate rate (1e30 fixed-point)                                |
| `pnl_cap_factor` / `max_pnl_factor_for_traders`    | string  | Trader PnL cap relative to pool (1e30)                                 |
| `oi_long` / `oi_short`                             | string  | Open interest per side, USD (1e30)                                     |
| `oi_skew_usd`                                      | string  | Net long − short OI, USD (1e30)                                        |
| `weak_side`                                        | string  | Weaker OI side (`long`/`short`) — eligible for loss rebate             |
| `open_24h` / `high_24h` / `low_24h`                | string  | 24h price stats (decimal price)                                        |
| `volume_24h`                                       | string  | 24h notional volume, USD (1e30)                                        |
| `market_address`                                   | string  | Market (pool) contract address                                         |
| `index_token_address`                              | string  | Index (priced) token address                                           |
| `long_token_address` / `short_token_address`       | string  | Collateral token addresses (both USDT)                                 |
| `next_market_open_time` / `next_market_close_time` | number  | Next open/close (ms epoch) for scheduled markets                       |
| `schedule`                                         | string  | Trading schedule (timezone + weekly pattern)                           |
| `is_holiday`                                       | boolean | Whether the market is in a holiday closure                             |
| `is_market_pausing`                                | boolean | Whether trading is currently paused                                    |
| `is_view`                                          | boolean | Whether the market is listed in the UI                                 |
| `min_position_size_usd`                            | string  | Minimum position size, Normal mode, USD (1e30)                         |
| `min_zfp_position_size_usd`                        | string  | Minimum position size, Hyper Lev mode, USD (1e30)                      |
| `min_zfp_collateral_factor_for_liq`                | string  | Hyper Lev maintenance margin factor (1e30)                             |
| `is_default`                                       | boolean | Whether this is the default market shown on load                       |

{% hint style="info" %}
If `hyper_mode_enabled` is `false`, the market supports Normal mode only — the Normal / Hyper Lev toggle will not appear, and `min_leverage_hyper` / `max_leverage_hyper` do not apply.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://hertzflow.gitbook.io/hertzflow-docs/tech-docs/api/market-list-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
