FCC NBM data

Published

July 25, 2024

Code
source("R/table_with_options.R")

This page will display all available data (minus challenge data1]) that can downloaded from FCC NBM.

Getting the Information about NBM Release:

Code
filing_url <- "https://broadbandmap.fcc.gov/nbm/map/api/published/filing"

# getting a list of release
get_release <- function(filing_url) {
  req <- curl::curl_fetch_memory(filing_url)
  release <- jsonlite::fromJSON(rawToChar(req$content))$data
  return(release)
}

release <- get_release(filing_url)
table_with_options(release)

Footnotes

  1. this data is stored in a slighly different endpoint see↩︎