Switch country

API Keys

Manage your API access credentials

Production active
Created Jan 15, 2026 · Last used 2 hours ago
mon_live_sk_••••••••••••••••i9j0
API Calls This Month 8,420 / 10,000
Development active
Created Feb 3, 2026 · Last used 3 days ago
mon_test_sk_••••••••••••••••r1q0
API Calls This Month 1,240 / 10,000

Quick Start

Python
import requests

api_key = "mon_live_sk_a1b2..."
headers = {"Authorization": f"Bearer {api_key}"}

# Get live rates
response = requests.get(
    "https://api.monierate.com/v1/rates",
    params={"pair": "NGN_USDT"},
    headers=headers
)

data = response.json()
print(f"NGN/USDT: {data['rate']}")