# Find Recently Granted Patents by Topic & Date

**Use case:** 

Find recently granted patents on any topic within a date range. Export claims, CPC codes, assignees, citations and grant dates from Google Patents.

## Input

```json
{
  "mode": "search",
  "searchQueries": [
    "solid state battery"
  ],
  "status": "GRANT",
  "patentType": "any",
  "dateType": "publication",
  "dateFrom": "2025-01-01",
  "dateTo": "2026-06-01",
  "sortBy": "new",
  "maxResults": 100,
  "maxResultsPerQuery": 0,
  "includePatentDetails": true,
  "includeClaims": true,
  "includeCitations": true,
  "includeDescription": false,
  "maxCitations": 100,
  "monitorMode": false,
  "monitorStoreName": "google-patents-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "publicationNumber": {
    "label": "Publication #"
  },
  "title": {
    "label": "Title"
  },
  "assigneeTop": {
    "label": "Assignee"
  },
  "inventorsTop": {
    "label": "Inventors"
  },
  "filingDate": {
    "label": "Filed"
  },
  "grantDate": {
    "label": "Granted"
  },
  "legalStatus": {
    "label": "Status"
  },
  "citedByCount": {
    "label": "Cited by"
  },
  "familyMemberCount": {
    "label": "Family"
  },
  "impactScore": {
    "label": "Impact"
  },
  "patentUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Patents Scraper — Patents, Citations & Assignees](https://apify.com/scrapesage/google-patents-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/google-patents-scraper) to learn more, explore other use cases, and run it yourself.