Skip to main content
GET
/
v1
/
mix
/
currency
/
recharge
Get List of Rechargeable Currencies
curl --request GET \
  --url https://api.openxswitch.com/v1/mix/currency/recharge \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "coin": "USDT",
      "iconUrl": "https://cdn.openxswitch.com/public/logos/svg/usdt.svg",
      "chains": [
        {
          "chain": "ERC20",
          "needTag": "false",
          "depositConfirm": "12",
          "withdrawConfirm": "64",
          "minDepositAmount": "0.001",
          "minWithdrawAmount": "10",
          "txUrl": "https://etherscan.io/tx/"
        }
      ]
    }
  ],
  "totalPage": 123,
  "pageNo": 123,
  "pageLimit": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.openxswitch.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

coin
string

The token name

Example:

"USDT,ETH,USDC"

chain
string

The chain name

Example:

"ETH,TRC20,ERC20,POLYGON"

Response

success
boolean
required
Example:

true

data
object[]
required
totalPage
number
required
pageNo
number
required
pageLimit
number
required