← Finance & Currency

Currency Pair Detail

GET /pair/:base/:target

Get a detailed profile for a specific currency pair, including the latest rate, recent historical rates, and percentage change over time. Designed for building dedicated currency pair pages (e.g., EUR/USD detail view) with trend information. More focused than the general rates endpoint, giving you pair-specific analytics in one call.

See it visualized

Parameters

base required

Base currency in URL

target required

Target currency in URL

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/pair/EUR/USD
EUR/USD pair detail
curl https://nordapi.ee/api/v1/pair/EUR/USD
GBP/NOK pair detail
curl https://nordapi.ee/api/v1/pair/GBP/NOK
USD/JPY pair detail
curl https://nordapi.ee/api/v1/pair/USD/JPY

Live Response

{
  "base": "EUR",
  "change": 0.0,
  "change_pct": 0.0,
  "history": [
    {
      "date": "2026-07-05",
      "rate": 1.1448
    }
  ],
  "latest": {
    "date": "2026-07-05",
    "rate": 1.1448
  },
  "previous": null,
  "success": true,
  "target": "USD"
}

Example Response

{"success":true,"base":"EUR","target":"USD","latest":{"rate":1.1555,"date":"2026-05-24"},"change_pct":0.57}