Learn R Programming

imfapi (version 0.1.2)

imf_get_dataflows: Get dataflow definitions for aLL available IMF datasets

Description

Retrieves and returns all available dataflow definitions from the SDMX dataflow endpoint.

Usage

imf_get_dataflows(progress = FALSE, max_tries = 10L, cache = TRUE)

Value

tibble::tibble( id = character(), # e.g., "MFS_IR", "SPE", etc. name = character(), # English name description = character(), # English description version = character(), # e.g., "8.0.1" structure = character(), # DSD reference last_updated = character() # from annotations )

Arguments

progress

Logical; whether to show progress.

max_tries

Integer; maximum retry attempts.

cache

Logical; whether to cache the request.

Examples

Run this code
# \donttest{
if (curl::has_internet()) {
  imf_get_dataflows()
}
# }

Run the code above in your browser using DataLab