Documentation Index
Fetch the complete documentation index at: https://docs.numofx.com/llms.txt
Use this file to discover all available pages before exploring further.
markets-service is the public-facing REST surface for Numo’s futures orderbook.
Public endpoints
The service exposes these core routes:GET /healthzGET /v1/marketsGET /v1/bookGET /v1/tradesPOST /v1/ordersPOST /v1/orders/cancel
Market discovery
UseGET /v1/markets before you submit anything. The response contains the canonical metadata you need for order entry:
marketasset_addresssub_idcontract_typesettlement_typedisplay_nametick_sizeorder_entry_specwhen a market has a specialized UI contract
Reading the book
GET /v1/book accepts either:
symbol=USDCcNGN-APR30-2026, orasset_address=0x...&sub_id=1777507200
market_presentationbidsasks
Reading trade history
GET /v1/trades supports:
symbolasset_addresssub_idlimitbefore_trade_id
market_presentationstats_24htradesnext_before_trade_id
Submitting an order
POST /v1/orders persists a signed order after validating the embedded action payload.
Required fields include:
order_idowner_addresssigner_addresssubaccount_idrecipient_idnoncesideasset_addresssub_iddesired_amountlimit_priceworst_feeexpiryaction_jsonsignature
action_json disagree on owner, signer, subaccount, or nonce.
Cancelling an order
UsePOST /v1/orders/cancel with:
owner_addressnonce

