Skip to content
Logo MoneyGo

Currencies

This endpoint retrieves all currencies available in the application. The response includes detailed information for each currency, such as its code, name, conversion rate, and configuration parameters.

  • Method: GET
  • URL: https://api.money-go.com/api/currencies

Terminal window
curl -X GET "https://api.money-go.com/api/currencies"
{
"status": true,
"data": [
{
"id": 19,
"code": "ETH",
"icon": null,
"name": "Ethereum",
"rate": 5.256586319813e-6,
"timeUpdatedRate": "2021-06-08T09:05:19+00:00",
"prefix": "E",
"decimals": 8,
"isActive": false,
"minAmount": 0,
"maxAmount": 0
}
]
}
FieldTypeDescription
statusbooleanIndicates whether the request was successful.
dataarrayList of currency objects.
FieldTypeDescription
idnumberUnique identifier for the currency.
codestringCurrency code (e.g., “ETH”).
iconstringURL or filename for the currency icon; may be null.
namestringName of the currency (e.g., “Ethereum”).
ratenumberConversion rate for the currency.
timeUpdatedRatestringISO 8601 timestamp indicating when the rate was last updated.
prefixstringCurrency prefix (e.g., “E”).
decimalsnumberNumber of decimal places for currency values.
isActivebooleanIndicates whether the currency is active.
minAmountnumberMinimum allowed transaction amount in this currency.
maxAmountnumberMaximum allowed transaction amount in this currency.