get_todays_exchangerate function

Retrieves the exchange rate that was published today.

Retrieves the exchange rate that was published today.

get_todays_exchangerate(table, currency_code)

Arguments

  • table: specifies which from which table the exchange rate should be fetched.
  • currency_code: code of the currency for which the exchange rate should be fetched.

Returns

nbp_api_response object containing today's exchange rate.

Details

If today's data is not available the API will return a 404 Not found error. In that case the function will return an error with an appropriate message.

Examples

tryCatch( { ## Fetch todays A exchange rate table response <- get_todays_exchangerate("A", "EUR") ## Preview response content response$content }, error = function(e) message(e) )

See Also

https://api.nbp.pl/#kursyWalut

Other rates: get_current_exchangerate(), get_exchangerate_from(), get_exchangerate_from_interval(), get_last_n_exchangerates()

  • Maintainer: Ryszard Szymanski
  • License: GPL-3
  • Last published: 2025-03-23