Nothing
#' List Currently Supported States
#'
#' @return tibble of supported states
#' @export
#'
#' @concept info
#'
#' @examples
#' ps_supported_states()
ps_supported_states <- function() {
httr2::request('https://api.planscore.org/states') |>
httr2::req_perform() |>
httr2::resp_body_json() |>
lapply(function(y) dplyr::bind_cols(y, .name_repair = ~ c('state', 'type'))) |>
dplyr::bind_rows()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.