Skip to main content
GET
/
v1
/
forex
/
current
Live NGN exchange rates
curl --request GET \
  --url https://api.ngnmarket.com/v1/forex/current \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "base": "NGN",
    "date": "2026-04-17",
    "rates": {
      "USD": 0.000623,
      "EUR": 0.000572,
      "GBP": 0.000491,
      "CAD": 0.000857
    }
  },
  "meta": {
    "plan": "free",
    "calls_used": 142,
    "calls_remaining": 9858,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ngnmarket.com/llms.txt

Use this file to discover all available pages before exploring further.

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