Parses a SIDRA API URL and fetches the data using ibge_variables(),
returning the same tidy tibble format.
Value
A tibble in tidy (long) format, same as
ibge_variables().
Examples
if (FALSE) { # \dontrun{
url <- "https://apisidra.ibge.gov.br/values/t/7060/n1/all/v/63/p/last%2012/c315/7169"
fetch_sidra_url(url)
# Pipe-friendly: inspect then fetch
url |> parse_sidra_url()
url |> fetch_sidra_url()
} # }