get_todays_exchangerate: Retrieves the exchange rate that was published today.

Description Usage Arguments Details Value See Also Examples

View source: R/endpoint_rates.R

Description

Retrieves the exchange rate that was published today.

Usage

1

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.

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.

Value

nbp_api_response object containing today's exchange rate.

See Also

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

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

Examples

1
2
3
4
5
6
7
8
  tryCatch({
      ## Fetch todays A exchange rate table
      response <- get_todays_exchangerate("A", "EUR")
      ## Preview response content
      response$content
    },
    error = function(e) message(e)
  )

rnbp documentation built on June 7, 2021, 9:07 a.m.