Get Deposit Methods
POST/private/DepositMethods
Retrieve methods available for depositing a particular asset.
API Key Permissions Required: Funds permissions - Query
and Funds permissions - Deposit
Request
- application/json
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
asset stringrequired
Asset being deposited
aclass string
Default value: currency
Asset class being deposited (optional)
Responses
- 200
Deposit methods retrieved.
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
result object[]
method string
Name of deposit method
limit
Maximum net amount that can be deposited right now, or false if no limit
fee string
Amount of fees that will be paid
address-setup-fee string
Whether or not method has an address setup fee
gen-address boolean
Whether new addresses can be generated for this method.
minimum string
Minimum net amount that can be deposited right now
error string[]
{
"error": [],
"result": [
{
"method": "Bitcoin",
"limit": false,
"fee": "0.0000000000",
"gen-address": true,
"minimum": "0.00010000"
},
{
"method": "Bitcoin Lightning",
"limit": false,
"fee": "0.00000000",
"minimum": "0.00010000"
}
]
}
Loading...