GET api/COVIDExport/GetCountyTestResultsTimeSeries?CountyName={CountyName}

COVID-19 Daily County level Snapshot detailing the tested, cases, and deaths for an individual County over time.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CountyName

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of COVIDCountyHistorical
NameDescriptionTypeAdditional information
ReportDate

date

None.

CountyName

string

None.

CumulativeCases

integer

None.

CasesChange

integer

None.

TotalTested

integer

None.

TotalTestedChange

integer

None.

Deaths

integer

None.

DeathsChange

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ReportDate": "2025-06-13T04:33:13.3953867-05:00",
    "CountyName": "sample string 2",
    "CumulativeCases": 3,
    "CasesChange": 4,
    "TotalTested": 5,
    "TotalTestedChange": 6,
    "Deaths": 7,
    "DeathsChange": 8
  },
  {
    "ReportDate": "2025-06-13T04:33:13.3953867-05:00",
    "CountyName": "sample string 2",
    "CumulativeCases": 3,
    "CasesChange": 4,
    "TotalTested": 5,
    "TotalTestedChange": 6,
    "Deaths": 7,
    "DeathsChange": 8
  }
]

text/html

Sample:
[{"ReportDate":"2025-06-13T04:33:13.3953867-05:00","CountyName":"sample string 2","CumulativeCases":3,"CasesChange":4,"TotalTested":5,"TotalTestedChange":6,"Deaths":7,"DeathsChange":8},{"ReportDate":"2025-06-13T04:33:13.3953867-05:00","CountyName":"sample string 2","CumulativeCases":3,"CasesChange":4,"TotalTested":5,"TotalTestedChange":6,"Deaths":7,"DeathsChange":8}]

application/xml, text/xml

Sample:
<ArrayOfCOVIDCountyHistorical xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models">
  <COVIDCountyHistorical>
    <CasesChange>4</CasesChange>
    <CountyName>sample string 2</CountyName>
    <CumulativeCases>3</CumulativeCases>
    <Deaths>7</Deaths>
    <DeathsChange>8</DeathsChange>
    <ReportDate>2025-06-13T04:33:13.3953867-05:00</ReportDate>
    <TotalTested>5</TotalTested>
    <TotalTestedChange>6</TotalTestedChange>
  </COVIDCountyHistorical>
  <COVIDCountyHistorical>
    <CasesChange>4</CasesChange>
    <CountyName>sample string 2</CountyName>
    <CumulativeCases>3</CumulativeCases>
    <Deaths>7</Deaths>
    <DeathsChange>8</DeathsChange>
    <ReportDate>2025-06-13T04:33:13.3953867-05:00</ReportDate>
    <TotalTested>5</TotalTested>
    <TotalTestedChange>6</TotalTestedChange>
  </COVIDCountyHistorical>
</ArrayOfCOVIDCountyHistorical>

text/csv

Sample:

Sample not available.