Example API Calls
A few API calls to get you started. The following examples all use cURL.
Getting Your Balance
$ curl 'https://api.vaultoro.com/v1/private/balances' \
-H 'VTOKEN: {TOKEN}'{
"data": [{
"type": "PENDING",
"handle": "BTC",
"quantity": "0.00000000"
}, {
"type": "SETTLED",
"handle": "BTC",
"quantity": "9998.04231521"
}, {
"type": "PENDING",
"handle": "GOLD",
"quantity": "17.0439"
}, {
"type": "SETTLED",
"handle": "GOLD",
"quantity": "100007.0439"
}, {
"type": "PENDING",
"handle": "DASH",
"quantity": "0.00000000"
}, {
"type": "SETTLED",
"handle": "DASH",
"quantity": "23.97600000"
}, {
"type": "PENDING",
"handle": "SILVER",
"quantity": "0"
}, {
"type": "SETTLED",
"handle": "SILVER",
"quantity": "50000"
}]
}Creating an Order
Last updated