v1
latestOpenAPI 3.1.02026-07-241653251.3 MBCLOB
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
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"
}
}