1. Currency Information
CharrgRate
  • Charrg Rates
    • Currency Conversion
      • Convert a specified source amount
      • Calculate the source equivalent of a target amount
    • Currency Information
      • List available currencies
        GET
    • Schemas
      • ConvertFromResponse
      • ConvertToResponse
      • Rate
      • ErrorResponse
      • CurrencyInfoResponse
      • CurrencyInfo
  1. Currency Information

List available currencies

GET
/v1/currencies
Return currency codes and descriptive metadata. No query parameter is required. Omit iso to request all currency entries selected by the other options, or filter by one or more codes or prefixes. obsolete=true includes obsolete currencies for which historical data is available. This operation lists metadata; it does not return exchange rates, confirm payout availability, or execute a payment. Currency metadata and conversion access are separate; confirm permitted currencies with LEOGC.

Request

Authorization
API Key
Add parameter in header
Ocp-Apim-Subscription-Key
Example:
Ocp-Apim-Subscription-Key: ********************
or
Query Params

Responses

🟢200
application/json
Available currency metadata. The example is a filtered illustration, not a live or complete currency list.
Headers

Bodyapplication/json

🔵304
🟠401
🟠403
🟠429
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/v1/currencies?iso=USD%2CGHS&obsolete=false&language=en&additionalInfo=symbol&crypto=false' \
--header 'Ocp-Apim-Subscription-Key: <api-key>'
Response Response Example
200 - Illustrative USD/GHS metadata without additionalInfo
{
    "terms": "string",
    "privacy": "string",
    "currencies": [
        {
            "iso": "USD",
            "currency_name": "US Dollar",
            "is_obsolete": false
        },
        {
            "iso": "GHS",
            "currency_name": "Ghanaian Cedi",
            "is_obsolete": false
        }
    ]
}
Modified at 2026-09-24 15:39:30
Previous
Calculate the source equivalent of a target amount
Next
ConvertFromResponse
Built with