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.
base
required
Base currency in URL
target
required
Target currency in URL
| Name | Required | Default | Description |
|---|---|---|---|
base |
Yes | - | Base currency in URL |
target |
Yes | - | Target currency in URL |
curl https://nordapi.ee/api/v1/pair/EUR/USD
curl https://nordapi.ee/api/v1/pair/EUR/USD
curl https://nordapi.ee/api/v1/pair/GBP/NOK
curl https://nordapi.ee/api/v1/pair/USD/JPY
{
"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"
}
{"success":true,"base":"EUR","target":"USD","latest":{"rate":1.1555,"date":"2026-05-24"},"change_pct":0.57}