AML
Country Data
Crypto
- Private
- POSTAdd Order
- POSTCancel All Orders After X
- POSTCancel All Orders
- POSTCancel Order
- POSTDelete Export Report
- POSTGet Account Balance
- POSTGet Closed Orders
- POSTGet Deposit Addresses
- POSTGet Export Report Status
- POSTGet Ledgers Info
- POSTGet Open Orders
- POSTGet Open Positions
- POSTGet Status of Recent Deposits
- POSTGet Status of Recent Withdrawals
- POSTGet Trade Balance
- POSTGet Trade Volume
- POSTGet Trades History
- POSTGet Websockets Token
- POSTGet Withdrawal Information
- POSTQuery Ledgers
- POSTQuery Orders Info
- POSTQuery Trades Info
- POSTRequest Export Report
- POSTRequest Wallet Transfer
- POSTRequest Withdrawal Cancelation
- POSTRetrieve Data Export
- POSTStake Asset
- POSTUnstake Asset
- POSTWithdraw Funds
- POST
- Public
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
Private
Get Trade Balance
Retrieve a summary of collateral balances, margin position valuations, equity and margin level.
POST
/
getTradeBalance
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/getTradeBalance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"nonce": "-33240218",
"asset": "ZUSD"
}'
Copy
{
"error": [],
"result": {
"eb": "1101.3425",
"tb": "392.2264",
"m": "7.0354",
"n": "-10.0232",
"c": "21.1063",
"v": "31.1297",
"e": "382.2032",
"mf": "375.1678",
"ml": "5432.57"
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/getTradeBalance \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"nonce": "-33240218",
"asset": "ZUSD"
}'
Copy
{
"error": [],
"result": {
"eb": "1101.3425",
"tb": "392.2264",
"m": "7.0354",
"n": "-10.0232",
"c": "21.1063",
"v": "31.1297",
"e": "382.2032",
"mf": "375.1678",
"ml": "5432.57"
}
}
Assistant
Responses are generated using AI and may contain mistakes.