/v1/bidask
Full trading table C (bid/ask/spread)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/nbp-api/v1/bidask" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/nbp-api/v1/bidask", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/nbp-api/v1/bidask");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/nbp-api/v1/bidask",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"base": "PLN",
"note": "bid/ask = PLN per 1 unit of the listed currency",
"count": 13,
"rates": [
{
"ask": 3.7138,
"bid": 3.6402,
"code": "USD",
"spread": 0.0736,
"currency": "dolar amerykański"
},
{
"ask": 2.621,
"bid": 2.569,
"code": "AUD",
"spread": 0.052,
"currency": "dolar australijski"
},
{
"ask": 2.6642,
"bid": 2.6114,
"code": "CAD",
"spread": 0.0528,
"currency": "dolar kanadyjski"
},
{
"ask": 4.2862,
"bid": 4.2014,
"code": "EUR",
"spread": 0.0848,
"currency": "euro"
},
{
"ask": 0.012046,
"bid": 0.011808,
"code": "HUF",
"spread": 0.0002,
"currency": "forint (Węgry)"
},
{
"ask": 4.6633,
"bid": 4.5709,
"code": "CHF",
"spread": 0.0924,
"currency": "frank szwajcarski"
},
{
"ask": 4.9583,
"bid": 4.8601,
"code": "GBP",
"spread": 0.0982,
"currency": "funt szterling"
},
{
"ask": 0.023206,
"bid": 0.022746,
"code": "JPY",
"spread": 0.0005,
"currency": "jen (Japonia)"
},
{
"ask": 0.1769,
"bid": 0.1733,
"code": "CZK",
"spread": 0.0036,
"currency": "korona czeska"
},
{
"ask": 0.5735,
"bid": 0.5621,
"code": "DKK",
"spread": 0.0114,
"currency": "korona duńska"
},
{
"ask": 0.3927,
"bid": 0.3849,
"code": "NOK",
"spread": 0.0078,
"currency": "korona norweska"
},
{
"ask": 0.3942,
"bid": 0.3864,
"code": "SEK",
"spread": 0.0078,
"currency": "korona szwedzka"
},
{
"ask": 5.0402,
"bid": 4.9404,
"code": "XDR",
"spread": 0.0998,
"currency": "SDR (MFW)"
}
],
"table": "C",
"source": "Narodowy Bank Polski",
"bulletin_no": "109/C/NBP/2026",
"trading_date": "2026-06-08",
"effective_date": "2026-06-09"
},
"meta": {
"timestamp": "2026-
…