v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
CLOB

Create account (CLOB)

Creates a new trading account on the CLOB. This is only relevant to our Central Limit Order Book (CLOB).

post/clob/accounts

Headers

X-SCX-SIGNEDstring required

HMAC-SHA256 signature of the request, base64-encoded. See the Authentication guide for the exact signing formula.

X-SCX-TIMESTAMPstring required
Example:1678901234

Current Unix timestamp in seconds. Must be within 60 seconds of server time or the request is rejected.

Request body

participant_codestring required

The code of the participant that owns the account.

prefundedboolean required

Indicates whether the participant has prefunded their account or not.

account_labelstring

The platform-dictated account label for the account.

account_tier'lite' | 'pro' | 'bronze' | 'silver' | 'gold'

The commission tier associated with the account, defined by the platform.

Example request

{
  "participant_code": "ABCDEF",
  "prefunded": true,
  "account_label": "general",
  "account_tier": "bronze"
}

Response

CLOB account creation accepted. The returned resource reflects the account created on the trading engine.

Example response

{
  "message": {
    "participant_code": "ABCDEF",
    "account_group": "PLT001",
    "account_label": "general",
    "prefunded": true,
    "account_tier": "bronze"
  }
}