OUTCOME · Discover
What changes
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
v2Markets and execution
/api/v2/marketsPURPOSE + BUSINESS CONTEXT
WHEN THIS CALL IS USEFUL
Call this when a market-data, trading, risk, or reconciliation client needs to discover markets and choose a canonical record for a later step so it can understand market, order, trade, position, or collateral state without confusing a read model with execution authority.
OUTCOME · Discover
Read-only projection; it grants no mutation, settlement, traffic, or authority change.
WHY IT MATTERS
ISOLATION + AUTHORITY
The authenticated owner, market, order, position, matching, risk, publisher, and settlement boundaries remain distinct. Documentation, contract visibility, and read access grant no execution authority; possession of a write scope still cannot bypass market status, risk, admission, allowlist, suspension, matching, publisher, or settlement gates. Current trading, matching, prediction, ingress, publisher, allowlist, suspension, market-status, and traffic controls remain frozen unless separately approved through their controlling process.
BEFORE YOU CALL
WHAT TO DO NEXT
AGENT GUIDANCE
Production OpenAPI presence proves that the public route is deployed; it does not unsuspend a market, admit order traffic, or select a matching engine. Catalog and read access can remain available while order entry is disabled. Matching authority, collateral reservation, settlement, and market lifecycle are independently fail-closed behind this stable contract.
The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.
Open the authoritative production contract ↗EXTENDED INTEGRATION GUIDANCE
Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.
PARAMETERS
AuthorizationheaderRequiredBearer tokenCredential containing the trading:read scope.EXAMPLEBearer hc_live_…
venuequeryOptionaldex | securities | virtualAuthoritative venue catalog. Defaults to dex.EXAMPLEdex
RESPONSES
{
"items": [
{
"market_id": "BTC-USD-PERP",
"native_market_id": "7",
"native_market_uuid": "4811484f0317409cae3a3c3ca5e9239a",
"venue": "securities",
"base_asset": "BTC",
"quote_asset": "USD",
"instrument_type": "PERPETUAL",
"status": "SUSPENDED",
"operating_mic": "PMXX",
"segment_mic": "PERP",
"isin": "BTC00000000001",
"tick_size": "0.01",
"step_size": "0.0001",
"minimum_quantity": "0.0001",
"maximum_quantity": "100",
"minimum_leverage": "1",
"maximum_leverage": "5"
}
],
"venue": "securities"
}{
"code": "missing_credentials",
"message": "Authorization: Bearer is required, or the supplied credential is invalid."
}missing_credentials{
"code": "insufficient_scope",
"message": "The credential lacks trading:read authority."
}insufficient_scope{
"code": "market_data_unavailable",
"message": "The authoritative venue catalog is unavailable or has not been configured."
}market_data_unavailableOPERATIONAL NOTES
UPGRADING FROM V1
If you maintain an older integration, use this map to find the V2 replacement. Do not translate the old request field-for-field: rebuild it from the V2 parameters and schemas above because identity, authorization, replay protection, and response semantics may have changed.
/api/v1/dex/marketsDEX: Get DEX Markets/api/v1/exchange/marketsMTF: Get MTF Markets/api/v1/virtex/marketsVIRTUAL: Get Virtual MarketsThis route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.
Verify the exact production OpenAPI operation ↗Return to the V2 directory ↗