COVIDcast Export

All signals displayed in COVIDcast are freely available for download here. You can also access the latest daily through the COVIDcast API which also includes numerous other signals.

1. Select Data Source

Select a data source to start with.

2. Select Signal

Pick a signal from this data source.

3. Specify Parameters

Customize the date range and pick a geographic level to download data for

Date range
May 2025
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
SunMonTueWedThuFriSat
W31
W32
W33
W34
W35
W36
-
August 2025
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
SunMonTueWedThuFriSat
W31
W32
W33
W34
W35
W36

Each geographic region is identified with a unique identifier, such as FIPS code. See the geographic coding documentation for details.

August 2025
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
SunMonTueWedThuFriSat
W31
W32
W33
W34
W35
W36

The as of date allows to fetch only data that was available on or before this date.

4. Get Data

We provide our data as a direct link to a CSV file or you can use our Python and R packages. Please acknowledge us as a source: Data from Delphi COVIDcast, delphi.cmu.edu/covidcast/

CSV File

Direct link:

Manually fetch data:


            wget --content-disposition "https://api.covidcast.cmu.edu/epidata/covidcast/csv?signal=&start_day=2025-05-04&end_day=2025-08-04&geo_type=county"
            

For more details about the API, see the API documentation. A description of the returned data structure can be found at: covidcast.

Python Package

Install covidcast via pip:

pip install covidcast

Fetch data:


        from datetime import date
import covidcast

data = covidcast.signal("", "",
                        date(2025, 5, 4), date(2025, 8, 4),
                        "county")
      

For more details and examples, see the package documentation. A description of the returned data structure can be found at: covidcast.signal.

R Package

Install covidcast via CRAN:

install.packages('covidcast')

Fetch data:


        library(covidcast)

cc_data <- covidcast_signal(
  data_source = "", signal = "",
  start_day = "2025-05-04", end_day = "2025-08-04",
  geo_type = "county"
)
      

For more details and examples, see the package documentation. A description of the returned data structure can be found at: covidcast_signal.

Close The content of the COVIDcast site and Epidata API are provided on an AS-IS, AS-AVAILABLE basis and are not intended for diagnostic or treatment purposes, or for guidance on any type of travel. Please refer to the Terms of Use.