GET api/COVIDExport/GetDemographicsRace?CountyName={CountyName}
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| CountyName | string | Required | 
Body Parameters
None.
Response Information
Resource Description
Collection of COVIDCountyRaceModelSnapshot| Name | Description | Type | Additional information | 
|---|---|---|---|
| CountyName | string | None. | |
| ReportDate | date | None. | |
| description | string | None. | |
| count | integer | None. | |
| tested | integer | None. | |
| deaths | integer | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "CountyName": "sample string 1",
    "ReportDate": "2025-10-31T17:02:07.8880777-05:00",
    "description": "sample string 3",
    "count": 4,
    "tested": 5,
    "deaths": 6
  },
  {
    "CountyName": "sample string 1",
    "ReportDate": "2025-10-31T17:02:07.8880777-05:00",
    "description": "sample string 3",
    "count": 4,
    "tested": 5,
    "deaths": 6
  }
]
        text/html
            Sample:
        
[{"CountyName":"sample string 1","ReportDate":"2025-10-31T17:02:07.8880777-05:00","description":"sample string 3","count":4,"tested":5,"deaths":6},{"CountyName":"sample string 1","ReportDate":"2025-10-31T17:02:07.8880777-05:00","description":"sample string 3","count":4,"tested":5,"deaths":6}]
        application/xml, text/xml
            Sample:
        
<ArrayOfCOVIDCountyRaceModelSnapshot xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models.Demographics">
  <COVIDCountyRaceModelSnapshot>
    <CountyName>sample string 1</CountyName>
    <ReportDate>2025-10-31T17:02:07.8880777-05:00</ReportDate>
    <count>4</count>
    <deaths>6</deaths>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDCountyRaceModelSnapshot>
  <COVIDCountyRaceModelSnapshot>
    <CountyName>sample string 1</CountyName>
    <ReportDate>2025-10-31T17:02:07.8880777-05:00</ReportDate>
    <count>4</count>
    <deaths>6</deaths>
    <description>sample string 3</description>
    <tested>5</tested>
  </COVIDCountyRaceModelSnapshot>
</ArrayOfCOVIDCountyRaceModelSnapshot>
        text/csv
            Sample:
    
Sample not available.
