GET
/
v1
/
supportedCurrency
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

signatureToken
string
required

A JWT token required for API authentication. Generate JWT token as explained in section Generate JWT Token using empty string.

Headers

Content-Type
string
required

Must be set to application/json.

Response

Returns a list of supported currencies.

name
string
required

The name of the currency.

symbol
string
required

The symbol of the currency.

decimal
integer
required

The number of decimal places supported.

usdPrice
string
required

The price in USD.

eurPrice
string
required

The price in EUR.

tryPrice
string
required

The price in TRY.

minPaymentAmount
string
required

The minimum payment amount accepted.

id
string
required

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"
  }
]