# Get Patent Details by Publication Number - Apify

**Use case:** 

Bulk-fetch full data for specific patent numbers: claims count, citations, CPC codes, legal status, inventors, and PDF URL.

## Input

```json
{
  "mode": "details",
  "query": "",
  "assignees": [],
  "inventors": [],
  "patentIds": [
    "US10000000B2",
    "EP3456789A1",
    "WO2021123456A1"
  ],
  "countries": [],
  "statusFilter": "any",
  "dateFrom": "",
  "dateTo": "",
  "enrichmentDepth": "deep",
  "incrementalMode": false,
  "maxResults": 25,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "patentId": {
    "label": "Patent ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "assigneeCurrent": {
    "label": "Assignee",
    "format": "text"
  },
  "backwardCitationsCount": {
    "label": "Cited",
    "format": "number"
  },
  "forwardCitationsCount": {
    "label": "Citing",
    "format": "number"
  },
  "cpcClassifications": {
    "label": "CPC",
    "format": "array"
  },
  "claimsCount": {
    "label": "Claims",
    "format": "number"
  },
  "familyId": {
    "label": "Family",
    "format": "text"
  },
  "pdfUrl": {
    "label": "PDF",
    "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.