curl --request GET \
--url https://doc-api.oppiwallet.com/api/supportedCurrency \
--header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json'
[
{
"name": "Bitcoin",
"symbol": "BTC",
"decimal": 18,
"usdPrice": "0.4573",
"eurPrice": "0.421934928",
"tryPrice": "14.934817532999999",
"minPaymentAmount": "1",
"id": "6698aec7f188ae24c673da1c"
}
]
Authentication
A JWT token required for API authentication.
Generate JWT token as explained in section Generate JWT Token using empty string.
Must be set to application/json
.
Response
Returns a list of supported currencies.
The name of the currency.
The symbol of the currency.
The number of decimal places supported.
The minimum payment amount accepted.
Unique identifier for the currency.
curl --request GET \
--url https://doc-api.oppiwallet.com/api/supportedCurrency \
--header 'signatureToken: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...' \
--header 'Content-Type: application/json'
[
{
"name": "Bitcoin",
"symbol": "BTC",
"decimal": 18,
"usdPrice": "0.4573",
"eurPrice": "0.421934928",
"tryPrice": "14.934817532999999",
"minPaymentAmount": "1",
"id": "6698aec7f188ae24c673da1c"
}
]