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

Authorization
API Key
Add parameter in header
api_key
Example:
api_key: ********************
or
Query Params

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' \
--header 'api_key;'

Responses

🟢200Success
application/json
Body

Example
{
    "status": "success",
    "message": "retrieved",
    "data": {
        "USD": "United States Dollar"
    }
}
Modified at 2025-02-05 15:07:04
Previous
Platforms
Next
Convert
Built with