v1

latestOpenAPI 3.1.02026-07-241653251.3 MB
CLOB

List accounts (CLOB)

Retrieve a paginated list of your CLOB trading accounts. This is only relevant to our Central Limit Order Book (CLOB).

get/clob/accounts

Query parameters

participant_codestring

Filter results to a single participant code.

account_labelstring

Filter results to a single account label.

prefunded'true' | 'false'

Filter results to prefunded (true) or non-prefunded (false) accounts.

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

Filter results to a single account tier.

pageinteger

Page number to fetch. Must be a positive integer. Defaults to 1 when omitted.

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.

Response

Successfully retrieved the paginated list of CLOB accounts.

next_pagenumber

Page number of the next page of results. 0 when there are no additional pages.

Example response

{
  "accounts": [
    {
      "participant_code": "ABCDEF",
      "account_group": "PLT001",
      "account_label": "general",
      "prefunded": true,
      "account_tier": "bronze"
    }
  ]
}