# US Clean Energy Patents Scraper for Solar Research

**Use case:** 

Scrape US patents related to solar photovoltaic clean energy. Get patent IDs, titles, dates, abstracts, and inventors.

## Input

```json
{
  "query": "solar photovoltaic clean energy",
  "countryCode": "US",
  "sort": "new",
  "maxResults": 500,
  "proxyConfig": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "patent_id": {
    "label": "Patent ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "patent_date": {
    "label": "Publication Date",
    "format": "string"
  },
  "assignees": {
    "label": "Assignees",
    "format": "string"
  },
  "inventors": {
    "label": "Inventors",
    "format": "string"
  },
  "cpc_class": {
    "label": "CPC Class",
    "format": "string"
  },
  "type": {
    "label": "Patent Type",
    "format": "string"
  },
  "num_claims": {
    "label": "Number of Claims",
    "format": "integer"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "patent_url": {
    "label": "Patent URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US Patents Scraper — Search, Keyword & Assignee](https://apify.com/logiover/patentsview-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/patentsview-scraper) to learn more, explore other use cases, and run it yourself.