GET api/COVID/GetZipByDay?zipCode={zipCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| zipCode | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of COVIDZipDaily| Name | Description | Type | Additional information | 
|---|---|---|---|
| ReportDate | date | None. | |
| ZipCode | string | None. | |
| TotalCases | integer | None. | |
| TotalCaseChange | integer | None. | |
| Tested | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "ReportDate": "2025-10-31T15:52:06.6212229-05:00",
    "ZipCode": "sample string 2",
    "TotalCases": 3,
    "TotalCaseChange": 4,
    "Tested": 5
  },
  {
    "ReportDate": "2025-10-31T15:52:06.6212229-05:00",
    "ZipCode": "sample string 2",
    "TotalCases": 3,
    "TotalCaseChange": 4,
    "Tested": 5
  }
]
        text/html
            Sample:
        
[{"ReportDate":"2025-10-31T15:52:06.6212229-05:00","ZipCode":"sample string 2","TotalCases":3,"TotalCaseChange":4,"Tested":5},{"ReportDate":"2025-10-31T15:52:06.6212229-05:00","ZipCode":"sample string 2","TotalCases":3,"TotalCaseChange":4,"Tested":5}]
        application/xml, text/xml
            Sample:
        
<ArrayOfCOVIDZipDaily xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models.COVID_Zip">
  <COVIDZipDaily>
    <ReportDate>2025-10-31T15:52:06.6212229-05:00</ReportDate>
    <Tested>5</Tested>
    <TotalCaseChange>4</TotalCaseChange>
    <TotalCases>3</TotalCases>
    <ZipCode>sample string 2</ZipCode>
  </COVIDZipDaily>
  <COVIDZipDaily>
    <ReportDate>2025-10-31T15:52:06.6212229-05:00</ReportDate>
    <Tested>5</Tested>
    <TotalCaseChange>4</TotalCaseChange>
    <TotalCases>3</TotalCases>
    <ZipCode>sample string 2</ZipCode>
  </COVIDZipDaily>
</ArrayOfCOVIDZipDaily>
        text/csv
            Sample:
    
Sample not available.
