GET api/COVIDExport/GetZipRaceDemographics?zip={zip}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| zip | integer | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of COVIDZipRaceExport| Name | Description | Type | Additional information | 
|---|---|---|---|
| ReportDate | date | None. | |
| Zip | integer | None. | |
| description | string | None. | |
| count | integer | None. | |
| tested | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "ReportDate": "2025-10-31T13:33:39.4239189-05:00",
    "Zip": 2,
    "description": "sample string 3",
    "count": 4,
    "tested": 5
  },
  {
    "ReportDate": "2025-10-31T13:33:39.4239189-05:00",
    "Zip": 2,
    "description": "sample string 3",
    "count": 4,
    "tested": 5
  }
]
        text/html
            Sample:
        
[{"ReportDate":"2025-10-31T13:33:39.4239189-05:00","Zip":2,"description":"sample string 3","count":4,"tested":5},{"ReportDate":"2025-10-31T13:33:39.4239189-05:00","Zip":2,"description":"sample string 3","count":4,"tested":5}]
        application/xml, text/xml
            Sample:
        
<ArrayOfCOVIDZipRaceExport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models.COVID_Zip">
  <COVIDZipRaceExport>
    <ReportDate>2025-10-31T13:33:39.4239189-05:00</ReportDate>
    <Zip>2</Zip>
    <count>4</count>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDZipRaceExport>
  <COVIDZipRaceExport>
    <ReportDate>2025-10-31T13:33:39.4239189-05:00</ReportDate>
    <Zip>2</Zip>
    <count>4</count>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDZipRaceExport>
</ArrayOfCOVIDZipRaceExport>
        text/csv
            Sample:
    
Sample not available.
