Account Activation & Funding Models
This guide walks through how to activate trading accounts on zerohash’s Central Limit Order Book (CLOB), and explains the difference between pre-funded and non-pre-funded account setups.
Prerequisites
Before an account can be activated on the CLOB, Platforms must confirm the following steps are complete.
- A participant must be created, associated to your platform. You can create a participant on the zerohash system using the following endpoints;
POST /participants/customers/newto create a new Individual participant.POST /participants/entity/newto create a new Entity(NNP) participant.- You can use the
GET /participant/{participant_code}/basic_infoto retrieve the participants status, along with subscribing to the zerohash participant status update events.
- The customers
statusin the response should beapproved
Account Activation
- Use the target customers
participant_codewhen calling thePOST /accountsendpoint. - Specify the funding model that you want the account to use,
prefunded : trueorprefunded : false.
Funding Models
Pre-Funded Accounts
>
- USD balances are held at zerohash and ledgered directly to the customer.
- Credit checks are performed by zerohash against the customer’s USD account balance.
- Platforms can use the float account to transfer funds to the customers balance using the POST /transfers endpoint.
-
{ "from_participant_code": "00SCXM", "from_account_group": "PLAT01", "to_participant_code": "PART02", "to_account_group": "GTRT44", "to_account_label":"general", "asset": "USD", "amount": "1" }
-
Non Pre-Funded Accounts
>
- Customers USD balances are maintained on your platforms ledgers.
- Credit checks on customers balance are performed by the platform before order placement.
- Customers will have the ability to place orders to the value of the platforms float if credit checks are not handled on the platforms order entries for
prefunded : falseaccounts.
- Customers will have the ability to place orders to the value of the platforms float if credit checks are not handled on the platforms order entries for
- Customers buying power will be allocated from the platforms float account upon order placement.
Example Request
{
"participant_code": "6AABU5",
"prefunded": false,
"account_tier": "pro",
"account_label": "6AABU5-LABEL",
"signed_timestamp": "1755133956"
}Example Response
{
"message": {
"participant_code": "6AABU5",
"account_group": "2XUB16",
"account_label": "6AABU5-LABEL",
"prefunded": false,
"account_tier": "pro",
"customer_account_urn": "",
"traders_list": []
}
}
Account Management
After account activation on the CLOB, you can use the following endpoints to manage your accounts:
- Get account details
- Update account
Updated 8 days ago
What’s Next