# Find a Company's Pending Patent Applications

**Use case:** 

Track a company's pending patent applications on Google Patents. Export application numbers, filing dates, CPC classes, inventors and abstracts as data.

## Input

```json
{
  "mode": "assigneePortfolio",
  "searchQueries": [
    "machine learning anomaly detection"
  ],
  "assignees": [
    "Tesla"
  ],
  "status": "APPLICATION",
  "patentType": "any",
  "dateType": "publication",
  "sortBy": "relevance",
  "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.