Skip to content
Logo MoneyGo

Rates

This endpoint retrieves all the application currency exchange rates. The response returns a list of rate objects with their names, groups, and values.

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

Terminal window
curl -X GET "https://api.money-go.com/api/currencies/rates"
{
"status": true,
"data": [
{
"name": "EUR/USD",
"group": "USD",
"value": 1.09
}
]
}
FieldTypeDescription
statusbooleanIndicates whether the request was successful.
dataarrayList of rate objects.
FieldTypeDescription
namestringThe name of the currency pair (e.g., “EUR/USD”).
groupstringThe base currency group (e.g., “USD”).
valuenumberThe exchange rate value for the currency pair.