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