# Data.gov Climate Change Datasets Scraper

**Use case:** 

Scrape Data.gov climate change datasets with title, organization, publisher, tags, formats, download links, and dates. Export to JSON or CSV.

## Input

```json
{
  "searchQuery": "climate change",
  "sort": "relevance",
  "maxItems": 25
}
```

## Output

```json
{
  "organizationImage": {
    "label": "Organization Image",
    "format": "image"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "datasetUrl": {
    "label": "Dataset URL",
    "format": "link"
  },
  "organizationName": {
    "label": "Organization",
    "format": "text"
  },
  "organizationUrl": {
    "label": "Organization URL",
    "format": "link"
  },
  "organizationType": {
    "label": "Organization Type",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  },
  "publisherUrl": {
    "label": "Publisher URL",
    "format": "link"
  },
  "contact": {
    "label": "Contact",
    "format": "object"
  },
  "organizationMission": {
    "label": "Organization Mission",
    "format": "text"
  },
  "topics": {
    "label": "Topics",
    "format": "array"
  },
  "availableFormats": {
    "label": "Available Formats",
    "format": "array"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "metadataUpdated": {
    "label": "Last Updated",
    "format": "date"
  },
  "metadataCreated": {
    "label": "Date Created",
    "format": "date"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "downloadsAndResources": {
    "label": "Downloads & Resources",
    "format": "array"
  },
  "accessAndUseInfo": {
    "label": "Access & Use Info",
    "format": "array"
  },
  "references": {
    "label": "References",
    "format": "array"
  },
  "metadataSource": {
    "label": "Metadata Source",
    "format": "array"
  },
  "dates": {
    "label": "Dates",
    "format": "array"
  },
  "additionalMetadata": {
    "label": "Additional Metadata",
    "format": "object"
  },
  "scrapedTimestamp": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [USA Data.gov U.S. Government's Open Data Scrape](https://apify.com/parseforge/data-gov-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/data-gov-scraper) to learn more, explore other use cases, and run it yourself.