Skip to main content
GET
/
wallet
/
supported-currencies
Get Supported Currencies
curl --request GET \
  --url https://api.rolla.xyz/api/v1/external/wallet/supported-currencies \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "message": "Supported currencies retrieved successfully",
  "data": {
    "currencies": [
      "NGN"
    ]
  }
}
Retrieve the list of currencies supported on the Rolla platform.

Example Request

curl -X GET "https://api.rolla.xyz/api/v1/external/wallet/supported-currencies" \
  -H "X-API-Key: your_api_key_here"

Example Response

{
  "success": true,
  "message": "Supported currencies retrieved successfully",
  "data": {
    "currencies": ["NGN", "USD", "GBP", "EUR"]
  }
}
Store this list locally and refresh periodically. The supported currencies rarely change but new ones may be added over time.

Authorizations

X-API-Key
string
header
required

Your Rolla API key

Response

Supported currencies retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Supported currencies retrieved successfully"

data
object