Monierate API
HomeIntrodutionGet API key
HomeIntrodutionGet API key
  1. Exchange Rates Endpoints
  • API Introduction
  • Authentication
  • Supported Currencies
  • Errors
  • Exchange Rates Endpoints
    • Latest rate
      GET
    • Platforms
      GET
    • Currencies
      GET
    • Convert
      POST
    • History
      GET
  1. Exchange Rates Endpoints

Currencies

GET
/rates/currencies.json
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: GET
Response:
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"
    }
}

Request

Query Params
code
string 
required
The currency code for which information is requested (e.g., "USD" for US Dollar, "EUR" for Euro).
Example:
USD

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.monierate.com/core/rates/currencies.json?code=USD'

Responses

🟢200Success
application/json
Body
status
string 
required
message
string 
required
data
object 
required
USD
string 
required
Example
{
    "status": "success",
    "message": "retrieved",
    "data": {
        "USD": "United States Dollar"
    }
}
Previous
Platforms
Next
Convert
Built with