Skip to main content
GET
/
forex
/
current
Live NGN exchange rates
curl --request GET \
  --url https://api.ngnmarket.com/v1/forex/current \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "target": "NGN",
    "date": "2026-04-17",
    "rates": [
      {
        "currency": "USD",
        "rate": 1603.5,
        "inverse_rate": 0.000624,
        "daily_change": 2.5,
        "daily_change_percent": 0.1561,
        "last_updated": "2026-04-17"
      },
      {
        "currency": "EUR",
        "rate": 1748.2,
        "inverse_rate": 0.000572,
        "daily_change": -5.1,
        "daily_change_percent": -0.2909,
        "last_updated": "2026-04-17"
      },
      {
        "currency": "GBP",
        "rate": 2037.8,
        "inverse_rate": 0.000491,
        "daily_change": 0,
        "daily_change_percent": 0,
        "last_updated": "2026-04-17"
      }
    ]
  },
  "meta": {
    "plan": "free",
    "calls_used": 142,
    "calls_remaining": 9858,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}
This endpoint returns the most recent NGN exchange rates for all supported currencies. Each rate object includes:
  • rate — how many NGN one unit of the foreign currency costs (e.g. 1603.50 means $1 = ₦1,603.50)
  • inverse_rate — how much foreign currency ₦1 buys (e.g. 0.000624)
  • daily_change and daily_change_percent — movement since the previous day
Rates are sourced from NGN Market’s live data feed and reflect the latest available market close. This endpoint accepts no query parameters.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Response

Current exchange rates retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object