# Bulk Patent Metadata Export for AI Datasets - Apify

**Use case:** 

Cheaply export large volumes of basic patent metadata by keyword for LLM training and data pipelines. Structured JSON, CSV, or Excel.

## Input

```json
{
  "mode": "search",
  "query": "machine learning",
  "assignees": [],
  "inventors": [],
  "patentIds": [],
  "countries": [
    "US"
  ],
  "statusFilter": "any",
  "dateFrom": "",
  "dateTo": "",
  "enrichmentDepth": "basic",
  "incrementalMode": false,
  "maxResults": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "patentId": {
    "label": "Patent ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "assigneeCurrent": {
    "label": "Assignee",
    "format": "text"
  },
  "inventors": {
    "label": "Inventors",
    "format": "array"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "publicationDate": {
    "label": "Published",
    "format": "date"
  },
  "filingDate": {
    "label": "Filed",
    "format": "date"
  },
  "legalStatus": {
    "label": "Status",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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