POST
/
getDepositMethods
curl --request POST \
  --url https://gateway.varchev.com/crypto/getDepositMethods \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "asset": "XBT"
}'
{
  "error": [],
  "result": [
    {
      "method": "Bitcoin",
      "limit": false,
      "fee": "0.0000000000",
      "gen-address": true
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Retrieve methods available for depositing a particular asset.

The body is of type object.

Response

default - application/json

Default response

The response is of type object.