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"}}
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"}}