Assets
These endpoints allow you to to generate wallet addresses for your assets, deposit funds and also withdraw funds from your account.
Get Wallet Address
GET
https://api.vaultoro.com/v1/private/coins/address
This endpoint allows you to retrieve your wallet addresses.
Query Parameters
asset
string
The asset you want to retrieve the wallet addresses for.
old
boolean
Choose to return inactive wallet addresses.
Headers
VTOKEN
string
Your API token.
Create Wallet Address
POST
https://api.vaultoro.com/v1/private/coins/address
This endpoint allows you create wallet addresses. You can create one address every 12 hours.
Query Parameters
asset
string
The asset you want to create an address for. BTC or DASH.
Headers
VTOKEN
string
Your API token.
Withdraw funds from your account
POST
https://api.vaultoro.com/v1/private/coins/withdraw
This endpoint requires OTP to be enabled on your account. You must send your OTP with your request. Your account must also be validated. You can request one withdrawal each 5 minutes. Fees also apply to each transaction - please login to your account to view the current ones.
Query Parameters
asset
string
The asset you wish to withdraw funds in. BTC or DASH
otp
string
Your One Time Password from Authenticator App.
address
string
The address to which you want to withdraw funds to.
quantity
number
The amount you wish to withdraw.
Headers
VTOKEN
string
Your API Token
Withdrawal Fees
POST
https://api.vaultoro.com/v1/private/coins/withdraw/fees
Calculate the fees for an asset withdrawal.
Query Parameters
asset
string
The asset you wish to filter results by
quantity
number
The quantity of the asset you wish to withdraw.
Headers
VTOKEN
string
Your API token.
Retrieve Transactions
GET
https://api.vaultoro.com/v1/private/coins/transactions
Fetch the status of your recent transactions.
Query Parameters
type
string
Either SEND or RECEIVE to filter by deposits or withdrawals.
status
string
Query by PENDING or VALID transactions.
tx
boolean
Send in true and we'll return the status of the transaction on the associated blockchain.
limit
number
The number of results to return
asset
string
The asset you want to filter the transactions by.
Headers
VTOKEN
string
Your API Token
Last updated