The Payment Company Logo

Crypto

Supported Assets

Retrieve all supported cryptocurrencies for The Payment Company Crypto Payin API. This endpoint returns the available pay-in cryptocurrencies based on country and amount.

SectionCrypto
Topics04
Pathcrypto / crypto-payin / payin-supported-currencies

API Endpoint

Live APIProduction environment
POSThttps://api.thepayment.company/api/v1/live/crypto/currencies
Test APISandbox environment
POSThttps://api.thepayment.company/api/v1/test/crypto/currencies

Request Fields

ParameterTypeDescriptionRequired
countryStringCountry code in ISO 3166-1 alpha-2 formatYes
amountNumberTransaction amount, which can be any decimal value such as 45, 20.5, or 10.00Yes

Payload

{
  "amount": 45,
  "country": "AE"
}

Sample Responses

{
"message": "Crypto currencies fetched successfully",
"data": [
  {
    "code": "BTC",
    "networks": ["BITCOIN"]
  },
  {
    "code": "ETH",
    "networks": ["ETHEREUM"]
  },
  {
    "code": "BNB",
    "networks": ["BINANCE_SMART_CHAIN", "ETHEREUM"]
  },
  {
    "code": "USDT",
    "networks": [
      "ETHEREUM",
      "TRON",
      "BINANCE_SMART_CHAIN",
      "POLYGON",
      "SOLANA",
      "AVALANCHE",
      "OMNI"
    ]
  }
]
}

On this page