GET api/COVID19/Surveillance/getWeeklyCountyCases?CountyName={CountyName}
Returns a County Specific weekly change and cumulative counts for cases and deaths.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CountyName | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of COVIDCountyHistorical| Name | Description | Type | Additional 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-12-13T20:34:26.3833121-06:00",
"CountyName": "sample string 2",
"CumulativeCases": 3,
"CasesChange": 4,
"TotalTested": 5,
"TotalTestedChange": 6,
"Deaths": 7,
"DeathsChange": 8
},
{
"ReportDate": "2025-12-13T20:34:26.3833121-06:00",
"CountyName": "sample string 2",
"CumulativeCases": 3,
"CasesChange": 4,
"TotalTested": 5,
"TotalTestedChange": 6,
"Deaths": 7,
"DeathsChange": 8
}
]
text/html
Sample:
[{"ReportDate":"2025-12-13T20:34:26.3833121-06:00","CountyName":"sample string 2","CumulativeCases":3,"CasesChange":4,"TotalTested":5,"TotalTestedChange":6,"Deaths":7,"DeathsChange":8},{"ReportDate":"2025-12-13T20:34:26.3833121-06: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-12-13T20:34:26.3833121-06: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-12-13T20:34:26.3833121-06:00</ReportDate>
<TotalTested>5</TotalTested>
<TotalTestedChange>6</TotalTestedChange>
</COVIDCountyHistorical>
</ArrayOfCOVIDCountyHistorical>
text/csv
Sample:
Sample not available.