秋田预测市场 · Discord 审计

如何通过 API 检查已下架市场状态的问题

2026-07-10 · Hyperliquid · 2 条相关讨论

khorwei 2026-07-10 09:58:17

how to check the status of a symbol of XYZ deployer ? like knowing ALUMIMUM is halted, but there is no endpoint to check the "status" of the symbol

how to check the status of a symbol of XYZ deployer ? like knowing ALUMIMUM is halted, but there is no endpoint to check the "status" of the symbol

Itay 2026-07-10 10:44:52

An /info request to`allPerpMetas` will return that - a market that is in a halted state it will have the `isDelisted` flag set to `true`: ```json { "szDecimals": 4, "name": "xyz:ALUMINIUM", "maxLeverage": 20, "marginTableId": 20, "onlyIsolated": true, "isDelisted": true, "marginMode": "strictIsolated", "growthMode": "enabled", "lastGrowthModeChangeTime": "2026-01-21T21:02:05.395415841" }, ```

An /info request to`allPerpMetas` will return that - a market that is in a halted state it will have the `isDelisted` flag set to `true`: ```json { "szDecimals": 4, "name": "xyz:ALUMINIUM", "maxLeverage": 20, "marginTableId": 20, "onlyIsolated": true, "isDelisted": true, "marginMode": "strictIsolated", "growthMode": "enabled", "lastGrowthModeChangeTime": "2026-01-21T21:02:05.395415841" }, ```