API Introduction
Common Use Cases
Connecting to the API
Supported Integration Methods
URL Format
https://api.monierate.com/core
latest.json
– Latest exchange ratescurrencies.json
– List of supported currenciesconvert.json
– Converts between currenciesExample Request
https://api.monierate.com/core/rates/latest.json?api_key=YOUR_API_KEY&base=USD
api_key
is passed in headers.curl --location 'https://api.monierate.com/core/rates/latest.json?base=USD' \
--header 'api_key: YOUR_API_KEY'
Authentication
Authorization
or api_key
api_key
Query Parameters
api_key
(required if not in request header): Your unique API keybase
(optional): Base currency (default: USD)API Response Format
Example Response (latest.json)
{
"timestamp": 1706908800,
"base": "USD",
"rates": {
"AED": 3.6725,
"AFN": 77.8500,
"ALL": 102.5000,
"AMD": 478.1500,
"ANG": 1.7900,
"AOA": 135.3000,
"ARS": 98.4500,
"AUD": 1.4200
}
}
Additional Endpoints
currencies.json
– Returns all supported currenciesconvert.json
– Converts currency based on current or historical ratesError Handling
Modified at 2025-02-05 11:24:40