# HealthData COVID Datasets Scraper

**Use case:** 

Search HealthData.gov for COVID datasets with dataset name, URL, description, category, tags, publisher, and update dates. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://healthdata.gov/browse?sortBy=newest&page=1&pageSize=20",
  "maxItems": 50,
  "q": "covid"
}
```

## Output

```json
{
  "datasetId": {
    "label": "Dataset ID",
    "format": "text"
  },
  "datasetName": {
    "label": "Dataset Name",
    "format": "text"
  },
  "datasetUrl": {
    "label": "Dataset URL",
    "format": "link"
  },
  "datasetType": {
    "label": "Dataset Type",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "contactEmail": {
    "label": "Contact Email",
    "format": "text"
  },
  "license": {
    "label": "License",
    "format": "text"
  },
  "dataPreviewUrl": {
    "label": "Data Preview URL",
    "format": "link"
  },
  "additionalAccessPoints": {
    "label": "Additional Access Points",
    "format": "array"
  },
  "fileDownloads": {
    "label": "File Downloads",
    "format": "array"
  },
  "metadata": {
    "label": "Metadata",
    "format": "object"
  },
  "viewCount": {
    "label": "View Count",
    "format": "number"
  },
  "downloadCount": {
    "label": "Download Count",
    "format": "number"
  },
  "lastUpdated": {
    "label": "Last Updated",
    "format": "date"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [USA HealthData.gov HHS Open Data Scraper](https://apify.com/parseforge/healthdata-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/healthdata-scraper) to learn more, explore other use cases, and run it yourself.