Copy this page's markdown — spec, plan access, and sample. Paste into any chat.
Open the .md URL in a new tab — share, bookmark, or paste the URL into an AI tool.
Market Status
GET
/futures/v1/market-status
Copy this page's markdown — spec, plan access, and sample. Paste into any chat.
Open the .md URL in a new tab — share, bookmark, or paste the URL into an AI tool.
Retrieve the current market status for a specific product or products. This endpoint returns real-time indicators, such as open, pause, close, for futures products, along with the corresponding exchange and product codes and an evaluation timestamp. This information enables users to monitor operational conditions and adjust their trading strategies accordingly.
Use Cases: Real-time monitoring, algorithm scheduling, UI updates, operational planning.
from massive import RESTClient
client = RESTClient("YOUR_API_KEY")
market_statuses = []
for ms in client.list_futures_market_statuses(
limit="10"
):
market_statuses.append(ms)
print(market_statuses)