Crypto Query

Description

Query the cryptocurrency coins and networks supported by merchants

Test environment

https://openapi-test.alchemypay.org/open/api/v3/merchant/crypto/list

Prod environment

https://openapi.alchemypay.org/open/api/v3/merchant/crypto/list

❗️This API can only be invoked on the server side.

Http method

  • GET

Http Header

ElementMandatoryData TypeRemarks
appidYstringPartner unique ID, once a merchant has been on-boarded with Alchemy Pay, the merchant will be provided with the credentials with appId and appSecret
timestampYstringUTC time with 13 digit to represent time in milliseconds, expiration period is 5 minutes.
signYstringSign the appId,timeStamp, and requested parameters alphabetically,the sign method can refer here

Url Parameter

ElementMandatoryData TypeRemarks
fiatCstringfiat type, char code with ISO4217 encoding(eg: USD, EUR, JPY, GBP), default USD if request without fiat

Request sample - Header

Response sample

{
  "success": true,
  "returnCode": "0000",
  "returnMsg": "SUCCESS",
  "extend": "",
  "data": [
    {
      "crypto": "NEAR",
      "network": "BSC",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,// minimum fiat amount onramp
      "maxPurchaseAmount": 1900,// maximum fiat amount onramp
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/NEAR.png",
      "minSellAmount": null,// minimum crypto quantity offramp
      "maxSellAmount": null//  maximum crypto quantity offramp
    },
    {
      "crypto": "NEAR",
      "network": "NEAR",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/NEAR.png",
      "minSellAmount": null,
      "maxSellAmount": null
    },
    {
      "crypto": "BCH",
      "network": "BSC",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/BCH.png",
      "minSellAmount": null,
      "maxSellAmount": null
    },
    {
      "crypto": "BCH",
      "network": "ETH",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/BCH.png",
      "minSellAmount": null,
      "maxSellAmount": null
    },
    {
      "crypto": "ACH",
      "network": "BSC",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/ACH.png",
      "minSellAmount": null,
      "maxSellAmount": null
    },
    {
      "crypto": "ACH",
      "network": "ETH",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 26.25,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/ACH.png",
      "minSellAmount": null,
      "maxSellAmount": null
    },
    {
      "crypto": "ADA",
      "network": "BSC",
      "buyEnable": 1,
      "sellEnable": 0,
      "minPurchaseAmount": 15.75,
      "maxPurchaseAmount": 1900,
      "address": null,
      "icon": "https://static.alchemypay.org/alchemypay/crypto-images/ADA.png",
      "minSellAmount": null,
      "maxSellAmount": null
    }
    ]
}