Fiat Query
Introduction
This API allows query the supported currencies, payment methods, and corresponding payWayCode for crypto buy and sell transactions.
Domains
Test Environment: https://openapi-test.alchemypay.org/open/api/v4/merchant/fiat/list
Prod Environment: https://openapi.alchemypay.org/open/api/v4/merchant/fiat/list
API Description
Request Method: GET
Request Parameters
Header Parameters:
| Element | Mandatory | Data Type | Remarks |
|---|---|---|---|
| appid | Y | string | Partner unique ID, once a merchant has been on-boarded with Alchemy Pay, the merchant will be provided with the credentials with appId and appSecret |
| timestamp | Y | string | UTC time with 13 digit to represent time in milliseconds, expiration period is 5 minutes. |
| sign | Y | string | Signature, you can refer to the signature here |
Url Parameters:
Element | Mandatory | Data Type | Remarks |
|---|---|---|---|
type | C | string |
|
Response Parameters
Response Parameter Example:
{
"success": true,
"returnCode": "0000",
"returnMsg": "SUCCESS",
"extend": "",
"data": [
{
"currency": "USD", // 3 digit currency code
"country": "US", // 2 digit country code
"payWayCode": "10001", //payment method code
"payWayName": "Credit Card", //payment method
"fixedFee": 0.300000, //ramp fixed fee
"feeRate": 0.051000, // ramp percent fee
"payMin": 30.000000, // minimal fiat amount
"payMax": 2000.000000, // maxmium fiat amount
"countryName": "United State"
},
{
"currency": "GBP",
"country": "US",
"payWayCode": "10001",
"payWayName": "Credit Card",
"fixedFee": 0.300000,
"feeRate": 0.051000,
"payMin": 30.000000,
"payMax": 2000.000000,
"countryName": "United Kingdom"
}
]
}Updated 14 days ago