# BNR exchange rates for one day

Official BNR (National Bank of Romania) reference rates — RON per 1 unit of each currency. Without "date" returns the latest published fixing. BNR publishes business days only: weekend/holiday requests answer with the previous fixing and the effective "date" in the response. Free of charge.

- REST: `GET https://api.datero.ro/v1/fx-rates`
- Tool MCP: `get_fx_rates` (endpoint: https://api.datero.ro/mcp)
- Cost: gratuit (0 credite)
- Autentificare: opțională — funcționează și fără cheie (doar rate-limited)

## Parametri

| Nume | În | Tip | Obligatoriu | Descriere |
| --- | --- | --- | --- | --- |
| `date` | query | string | nu | Requested day, YYYY-MM-DD. Default: the latest published fixing. |
| `currency` | query | string | nu | Filter currencies, comma-separated ISO 4217, e.g. "EUR,USD". |

## Exemplu: Cursul EUR și USD într-o zi anume

"date" în răspuns este ziua fixing-ului efectiv aplicat.

```bash
curl "https://api.datero.ro/v1/fx-rates?date=2026-06-10&currency=EUR%2CUSD"
```

Răspuns:

```json
{
  "date": "2026-06-10",
  "requestedDate": "2026-06-10",
  "target": "RON",
  "source": "BNR",
  "items": [
    {
      "currency": "EUR",
      "rate": 5.2344
    },
    {
      "currency": "USD",
      "rate": 4.5286
    }
  ]
}
```

Documentație completă: https://datero.ro/docs/api/fx/rates · OpenAPI: https://api.datero.ro/openapi.json
