Skip to main content

Place coins orders

There is no separate endpoint for coins orders. You use the same Place order, Cancel order, and List my open orders routes for every order on the platform. The denomination is determined entirely by your account’s current player mode.
  • When your account is in coins mode, every order you place will be denominated in coins.
  • When your account is in cash mode, every order you place will be denominated in cash.
There is no per-request flag that overrides this — the mode is a single per-account setting. To trade in the other currency, switch the mode before placing the order.

How to switch

Call Switch player mode with { "playerMode": "coins" } or { "playerMode": "cash" }. You can confirm the current mode at any time by inspecting data.user.playerMode from the Log in response, or via /user/getMe.

Then place your order

Once your mode is set, follow the standard order flow:
  • Place order — post a resting offer, or take resting liquidity by setting orderType to anything other than "post".
  • Cancel order — cancel a single open order.
  • List my open orders — your unmatched resting offers.
Switching modes does not auto-cancel orders that are already resting in the previous mode; only newly placed orders are affected.