Skip to main content
GET
/
v1
/
ramp
/
config
/
assets
List Supported Assets and Networks
curl --request GET \
  --url https://api-sandbox.uqpaytech.com/api/v1/ramp/config/assets \
  --header 'x-auth-token: <api-key>'
{
  "code": 200,
  "message": "Success",
  "data": [
    {
      "asset": "USDT",
      "asset_name": "Tether USD",
      "asset_type": "CRYPTO",
      "networks": [
        {
          "network": "ETH",
          "network_name": "Ethereum (ERC20)",
          "deposit_enabled": true,
          "withdraw_enabled": true,
          "min_deposit_amount": "10.00",
          "min_withdraw_amount": "20.00",
          "withdraw_precision": 2,
          "estimated_arrival_time": 15
        }
      ]
    }
  ]
}

Authorizations

x-auth-token
string
header
required

The API token for login provided by UQPay.

Headers

x-on-behalf-of
string

Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.

Query Parameters

asset_type
string

Filter by asset type: CRYPTO or FIAT

Response

Successfully retrieved supported assets

code
integer
required
Example:

200

message
string
required
Example:

"Success"

data
object[]
required