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
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"
},
```