Get a JSON list of all currency symbols available from the Monierate API, along with their full names, for use in your integration.This list will always mirror the currencies available in the latest rates (given as their 3-letter codes).Request Method:GETResponse:A JSON object containing the currency details:
status (string) – Indicates the success of the request (e.g., success).
message (string) – A descriptive message about the response (e.g., retrieved).
data (object) – Contains key-value pairs with:
<currency_code> (string) – The full name of the currency (e.g., "United States Dollar").
Example Request:
Example Response:
{"status":"success","message":"retrieved","data":{"USD":"United States Dollar"}}